11 lines
243 B
C#
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; }
|
|
}
|
|
}
|