2026-08-30 23:55:09 +01:00
|
|
|
namespace Yavsc.Abstract.Workflow;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Lightweight command-form description exposed to API clients.
|
|
|
|
|
/// </summary>
|
2026-09-02 14:52:17 +01:00
|
|
|
public sealed class CommandFormSummary
|
2026-08-30 23:55:09 +01:00
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public string ActionName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
}
|