using System.Collections.Generic; using Abp.Application.Services.Dto; namespace ContractService.LegalCase.Dto { public class SetStaffLawyerDto : EntityDto { public SetStaffLawyerDto() { List = new List(); } public List List { get; set; } public string Master { get; set; } public string LawFirmNo { get; set; } } public class StaffLawyerDto { public string No { get; set; } public string Name { get; set; } public string UserName { get; set; } public string OrgName { get; set; } public bool IsMaster { get; set; } } }