WorkflowDefinitionVersionDto.cs 191 B

12345678
  1. using VberZero.AppService.Base.Dto;
  2. namespace VberZero.AppService.Workflows.Dto;
  3. public class WorkflowDefinitionVersionDto : VzEntityDto<string>
  4. {
  5. public int? Version { get; set; }
  6. }