hrms-api-backend/BMA.EHR.Application/Requests/Commands/SearchProfileCommandRequest.cs
2023-09-06 11:52:48 +07:00

11 lines
243 B
C#

namespace BMA.EHR.Application.Requests.Commands
{
public class SearchProfileCommandRequest
{
public string CommandType { get; set; }
public int Year { get; set; }
public string? Posno { get; set; }
}
}