diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Validation/ControleValidacao.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Validation/ControleValidacao.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Validation/ControleValidacao.cs b/Gestor.Model/Gestor.Model.Validation/ControleValidacao.cs new file mode 100644 index 0000000..a167c69 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Validation/ControleValidacao.cs @@ -0,0 +1,14 @@ +using System; + +namespace Gestor.Model.Validation; + +public class ControleValidacao +{ + public string Nome { get; set; } + + public string Tag { get; set; } + + public string Estilo { get; set; } + + public Type Tipo { get; set; } +} |