summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.API/CustomerData.cs
blob: 0ee208a6f2a71392eadfa2bcbf3933bde94ae191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Gestor.Model.API;

public class CustomerData
{
	public string Corretora { get; set; }

	public string Name { get; set; }

	public string Email { get; set; }

	public string AreaCode { get; set; }

	public string Number { get; set; }
}