BindDto.cs 208 B

12345678910
  1. using Abp.Application.Services.Dto;
  2. namespace ContractService.Lawyer.Dto
  3. {
  4. public class BindDto
  5. {
  6. public string LawyerNo { get; set; }
  7. public string UserName { get; set; }
  8. }
  9. }