- using qdr.app.bundleboiler.data.Model;
- namespace qdr.app.bundleboiler.data.Dtos
- {
- public class EnumerationDto : BaseIdDto
- {
- public EnumClassType ClassType { get; set; }
- public int OrderNo { get; set; } = 0;
- public string Code { get; set; } = string.Empty;
- public string Name { get; set; } = string.Empty;
- public string? Description { get; set; }
- public DateTime Created { get; set; }
- public DateTime Changed { get; set; }
- }
- }
|