using System; using System.Runtime.CompilerServices; namespace Gestor.Model.Validation { public class ControleValidacao { public string Estilo { get; set; } public string Nome { get; set; } public string Tag { get; set; } public Type Tipo { get; set; } public ControleValidacao() { } } }