yavsc/src/Yavsc.Abstract/Workflow/CommandFormSummary.cs
2026-09-02 14:52:17 +01:00

11 lines
319 B
C#

namespace Yavsc.Abstract.Workflow;
/// <summary>
/// Lightweight command-form description exposed to API clients.
/// </summary>
public sealed class CommandFormSummary
{
public long Id { get; set; }
public string ActionName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
}