summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Generic/TelefoneBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Generic/TelefoneBase.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Entities.Generic/TelefoneBase.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Generic/TelefoneBase.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Generic/TelefoneBase.cs
deleted file mode 100644
index d415272..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Generic/TelefoneBase.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using Gestor.Model.Common;
-using System;
-using System.Runtime.CompilerServices;
-
-namespace Gestor.Infrastructure.Entities.Generic
-{
- public class TelefoneBase : EntityBase
- {
- public virtual string Numero
- {
- get;
- set;
- }
-
- public virtual string Prefixo
- {
- get;
- set;
- }
-
- public virtual TipoTelefone? Tipo
- {
- get;
- set;
- }
-
- public TelefoneBase()
- {
- }
- }
-} \ No newline at end of file