SetStaffDto.cs 227 B

12345678910
  1. using System.Collections.Generic;
  2. using Abp.Application.Services.Dto;
  3. namespace ContractService.LegalCase.Dto
  4. {
  5. public class SetStaffDto : EntityDto<string>
  6. {
  7. public List<string> Staffs { get; set; }
  8. }
  9. }