1 2 3 4 5 6 7 8 9 10
namespace Gestor.Model.API; public class Attachment { public string Description { get; set; } public string Extension { get; set; } public byte[] File { get; set; } }