18 lines
379 B
C#
18 lines
379 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; }
|
|
|
|
public bool? isTemplate { get; set; }
|
|
}
|
|
}
|