hrms-api-backend/BMA.EHR.Leave/DTOs/ChangeRound/SearchProfileDto.cs

22 lines
475 B
C#
Raw Normal View History

2023-11-23 15:48:09 +07:00
namespace BMA.EHR.Leave.Service.DTOs.ChangeRound
{
public class SearchProfileDto
{
public string? CitizenId { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public int Page { get; set; } = 1;
public int PageSize { get; set; } = 10;
public string? Keyword { get; set; }
2025-10-06 15:12:40 +07:00
public string? sortBy { get; set; }
public bool? descending { get; set; }
2023-11-23 15:48:09 +07:00
}
}