using System; using Volo.Abp.Application.Dtos; namespace BaseService.BaseData.JobManagement.Dto { public class JobDto : EntityDto { public string Name { get; set; } public bool Enabled { get; set; } public int Sort { get; set; } public string Description { get; set; } } }