summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Generic/EmailBase.cs
blob: 815f490ea4e9e5bf7370444dd23b2f579da24f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Gestor.Model.Attributes;

namespace Gestor.Model.Domain.Generic;

public class EmailBase : DomainBase
{
	private string _email;

	[Log(true)]
	public string Email
	{
		get
		{
			return _email?.ToLower().Trim();
		}
		set
		{
			_email = value;
		}
	}
}