hrms-api-backend/BMA.EHR.Application/Responses/CommandPayload.cs
Bright 7716a6fd02
Some checks failed
release-dev / release-dev (push) Failing after 11s
noti หนังสือเวียน
2025-04-03 14:19:39 +07:00

17 lines
333 B
C#

namespace BMA.EHR.Application.Responses
{
public class CommandPayload
{
public List<PayloadAttachment> attachments { get; set; }
}
public class PayloadAttachment
{
public string name { get; set; }
public string url { get; set; }
public bool? isReport { get; set; }
}
}