using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Card { public class Logo { public string Corretora { get; set; } public string CustomId { get; set; } public byte[] Data { get; set; } public string Whatsapp { get; set; } public string WhatsappSinistro { get; set; } public Logo() { } } }