Class Sealed
public sealed class InlineEditState

Namespace: Moka.Blazor.Json.Models

Tracks the state of an active inline edit session.

Properties

View Source
/// <summary>
///     Tracks the state of an active inline edit session.
/// </summary>
public sealed class InlineEditState
{
    public required string Path { get; init; }
    public required InlineEditTarget Target { get; init; }
    public required string OriginalValue { get; init; }
    public string CurrentValue { get; set; } = "";
    public string? ValidationError { get; set; }
    public JsonValueKind ValueKind { get; init; }
}
Was this page helpful?