12 lines
243 B
C#
12 lines
243 B
C#
|
|
namespace BMA.EHR.Application.Requests.Commands
|
|||
|
|
{
|
|||
|
|
public class SearchProfileCommandRequest
|
|||
|
|
{
|
|||
|
|
public Guid CommandTypeId { get; set; }
|
|||
|
|
|
|||
|
|
public int Year { get; set; }
|
|||
|
|
|
|||
|
|
public string? Posno { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|