using Gestor.Model.Attributes; using System; namespace Gestor.Model.Domain.Generic { public class EmailBase : DomainBase { private string _email; [Log(true)] public string Email { get { string str = this._email; if (str == null) { return null; } return str.ToLower().Trim(); } set { this._email = value; } } public EmailBase() { } } }