JobDto.cs 330 B

12345678910111213141516
  1. using System;
  2. using Volo.Abp.Application.Dtos;
  3. namespace BaseService.BaseData.JobManagement.Dto
  4. {
  5. public class JobDto : EntityDto<Guid>
  6. {
  7. public string Name { get; set; }
  8. public bool Enabled { get; set; }
  9. public int Sort { get; set; }
  10. public string Description { get; set; }
  11. }
  12. }