hrms-api-backend/BMA.EHR.Application/Requests/Commands/SearchProfileCommandRequest.cs

12 lines
243 B
C#
Raw Permalink Normal View History

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