summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Card/Logo.cs
blob: cb231e85ddd94781b3d30596244a4bea20c56bdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Gestor.Model.Domain.Card;

public class Logo
{
	public string CustomId { get; set; }

	public byte[] Data { get; set; }

	public string Corretora { get; set; }

	public string Whatsapp { get; set; }

	public string WhatsappSinistro { get; set; }
}