diff options
Diffstat (limited to 'Gestor.Model/Model.CalculoWeb/Usuario.cs')
| -rw-r--r-- | Gestor.Model/Model.CalculoWeb/Usuario.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Gestor.Model/Model.CalculoWeb/Usuario.cs b/Gestor.Model/Model.CalculoWeb/Usuario.cs new file mode 100644 index 0000000..5b46cf6 --- /dev/null +++ b/Gestor.Model/Model.CalculoWeb/Usuario.cs @@ -0,0 +1,18 @@ +using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.CalculoWeb
+{
+ public class Usuario
+ {
+ public string Email
+ {
+ get;
+ set;
+ }
+
+ public Usuario()
+ {
+ }
+ }
+}
\ No newline at end of file |