diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/BancoDb.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/BancoDb.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/BancoDb.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/BancoDb.cs new file mode 100644 index 0000000..db60a00 --- /dev/null +++ b/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Common/BancoDb.cs @@ -0,0 +1,36 @@ +using System;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Entities.Common
+{
+ public class BancoDb
+ {
+ public virtual int Codigo
+ {
+ get;
+ set;
+ }
+
+ public virtual int Id
+ {
+ get;
+ set;
+ }
+
+ public virtual string Nome
+ {
+ get;
+ set;
+ }
+
+ public virtual string Site
+ {
+ get;
+ set;
+ }
+
+ public BancoDb()
+ {
+ }
+ }
+}
\ No newline at end of file |