using System; using System.Collections.Generic; using Gestor.Model.Domain.Generic; using Newtonsoft.Json; namespace Gestor.Model.Domain.Ferramentas; public class AgendaTelefone : TelefoneBase, IDomain { public Agenda Agenda { get; set; } public string Observacao { get; set; } [JsonIgnore] public Func>> ValidationEvent => Validate; public List> Validate() { return ValidateBase(); } }