2023-09-11 13:53:53 +07:00
|
|
|
|
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; }
|
2025-04-03 14:19:39 +07:00
|
|
|
|
|
|
|
|
|
|
public bool? isReport { get; set; }
|
|
|
|
|
|
|
2025-08-29 11:25:54 +07:00
|
|
|
|
public bool? isTemplate { get; set; }
|
2023-09-11 13:53:53 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|