12 lines
284 B
C#
12 lines
284 B
C#
|
|
namespace BMA.EHR.Application.Responses
|
|||
|
|
{
|
|||
|
|
public class CommandInfoResponse
|
|||
|
|
{
|
|||
|
|
public string OrderNo { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public string OrderYear { get; set; } = string.Empty;
|
|||
|
|
|
|||
|
|
public DateTime SignDate { get; set; } = DateTime.Now;
|
|||
|
|
}
|
|||
|
|
}
|