fix คำนวณเครื่องราชย์

This commit is contained in:
Suphonchai Phoonsawat 2024-06-25 11:22:46 +07:00
parent 41474b407d
commit 0ed2d4c389
4 changed files with 56 additions and 4 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Application.Responses.Organizations
{
public class GetActiveRootResultDto
{
public string Message { get; set; } = string.Empty;
public int Status { get; set; } = -1;
public List<GetActiveRootDto> Result { get; set; } = new();
}
}