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 Attachments { get; set; } }