hrms-api-backend/BMA.EHR.Application/Requests/SaveRequsetNote.cs
2023-07-19 10:25:54 +07:00

9 lines
214 B
C#

namespace BMA.EHR.Application.Requests
{
public class SaveRequsetNote
{
public Guid PeriodId { get; set; }
public Guid OcId { get; set; }
public string Note { get; set; }
}
}