คำสั่งส่งตัวกลับ

This commit is contained in:
Suphonchai Phoonsawat 2023-09-27 12:36:21 +07:00
parent e5f73f42ef
commit c2021691fc
4 changed files with 96 additions and 18 deletions

View file

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BMA.EHR.Application.Responses.Reports
{
public class CommandType16Response
{
public string CommandNo { get; set; } = string.Empty;
public string CommandYear { get; set; } = string.Empty;
public string IssuerOrganizationName { get; set; } = string.Empty;
public string CommandAffectDate { get; set; } = string.Empty;
public string AuthorizedUserFullName { get; set; } = string.Empty;
public string AuthorizedPosition { get; set; } = string.Empty;
public string GovAidCommandNo { get; set; } = string.Empty;
public string GovAidCommandDate { get; set; } = string.Empty;
public string StartDate { get; set; } = string.Empty;
public string ActiveDate { get; set; } = string.Empty;
}
}