summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Relatorios/ClienteEmail.cs
blob: fda6534b810b02c402e6d1ade323fef009919a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Gestor.Model.Relatorios;

public class ClienteEmail
{
	private string _email;

	public Cliente Cliente { get; set; }

	public string Email
	{
		get
		{
			return _email;
		}
		set
		{
			_email = value?.Trim();
		}
	}
}