using System; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace Gestor.Model.API { public class CustomerAttendance { public List Attachments { get; set; } public string Body { get; set; } public Gestor.Model.API.CustomerData CustomerData { get; set; } public string Subject { get; set; } public CustomerAttendance() { } } }