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