11 lines
322 B
C#
11 lines
322 B
C#
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;
|
|
}
|