MatchDefinitionDto.cs 372 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Hotline.Share.Dtos.FlowEngine
  7. {
  8. public class MatchDefinitionDto
  9. {
  10. /// <summary>
  11. /// moduleCode
  12. /// </summary>
  13. public string Code { get; set; }
  14. public string? DefinitionId { get; set; }
  15. }
  16. }