summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.Domain.Card/Logo.cs
blob: 9c1596c08625610de17d1d93936a06bfca1b671c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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()
		{
		}
	}
}