hrms-api-backend/BMA.EHR.Application/Requests/SaveRequsetNote.cs

10 lines
214 B
C#
Raw Normal View History

2023-07-19 10:25:54 +07:00
namespace BMA.EHR.Application.Requests
{
public class SaveRequsetNote
{
public Guid PeriodId { get; set; }
public Guid OcId { get; set; }
public string Note { get; set; }
}
}