diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Validation/ControleValidacao.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Validation/ControleValidacao.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Validation/ControleValidacao.cs b/Codemerx/Gestor.Model/Model.Validation/ControleValidacao.cs new file mode 100644 index 0000000..2c3af2c --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Validation/ControleValidacao.cs @@ -0,0 +1,36 @@ +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()
+ {
+ }
+ }
+}
\ No newline at end of file |