15 lines
287 B
C#
15 lines
287 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; }
|
|||
|
|
}
|
|||
|
|
}
|