yavsc/src/Yavsc.Abstract/Workflow/CommandFormSummaryDto.cs

11 lines
322 B
C#
Raw Normal View History

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