using System; using System.Runtime.CompilerServices; namespace Gestor.Model.API { public class Attachment { public string Description { get; set; } public string Extension { get; set; } public byte[] File { get; set; } public Attachment() { } } }