BindDto.cs 176 B

12345678
  1. namespace ContractService.Client.Staff.Dto
  2. {
  3. public class BindDto
  4. {
  5. public string StaffNo { get; set; }
  6. public string UserName { get; set; }
  7. }
  8. }