api อัพเดทสถานะ Mark ระบบเครื่องราช

This commit is contained in:
Bright 2025-05-16 17:35:44 +07:00
parent 6e1965ba79
commit 851c024171
6 changed files with 169 additions and 1 deletions

View file

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