blob: bb20cd98ff9d105d3db90ad3f6cc3de65495d9ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.Collections.Generic;
namespace Gestor.Model.API;
public class CustomerAttendance
{
public CustomerData CustomerData { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
public List<Attachment> Attachments { get; set; }
}
|