CreateOrUpdateJobDto.cs 346 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace BaseService.BaseData.JobManagement.Dto
  5. {
  6. public class CreateOrUpdateJobDto
  7. {
  8. public string Name { get; set; }
  9. public bool Enabled { get; set; }
  10. public int Sort { get; set; }
  11. public string Description { get; set; }
  12. }
  13. }