create project

This commit is contained in:
Kittapath 2023-03-23 12:31:21 +07:00
commit ffeab6a127
196 changed files with 36968 additions and 0 deletions

View file

@ -0,0 +1,13 @@
using System.Net;
namespace BMA.EHR.Recurit.Exam.Service.Response
{
public class ResponseObject
{
public int Status { get; set; }
public string? Message { get; set; }
public object? Result { get; set; }
}
}