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