using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.ClientModule.Dto { public class ClientSimpleDto { public int id { get; set; } public string Name { set; get; } public int? LevelId { get; set; } } }