IUserPagingInputDto.cs 189 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace MTWorkHR.Core.IDto
  3. {
  4. public interface IUserPagingInputDto:IPagingInputDto
  5. {
  6. public long? DepartmentId { get; set; }
  7. }
  8. }