23 lines
526 B
C#
23 lines
526 B
C#
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; }
|
|
|
|
public string? sortBy { get; set; }
|
|
|
|
public bool? descending { get; set; }
|
|
|
|
public Guid? SelectedNodeId { get; set; }
|
|
}
|
|
}
|