aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ApartmentManager/HousingWebApi/Model/AllResident.cs')
-rw-r--r--ApartmentManager/HousingWebApi/Model/AllResident.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/ApartmentManager/HousingWebApi/Model/AllResident.cs b/ApartmentManager/HousingWebApi/Model/AllResident.cs
new file mode 100644
index 0000000..655ee84
--- /dev/null
+++ b/ApartmentManager/HousingWebApi/Model/AllResident.cs
@@ -0,0 +1,15 @@
+namespace HousingWebApi
+{
+ using System;
+ using System.Collections.Generic;
+ using System.ComponentModel.DataAnnotations;
+ using System.ComponentModel.DataAnnotations.Schema;
+ using System.Data.Entity.Spatial;
+
+ public partial class AllResident
+ {
+ [Key]
+ [StringLength(20)]
+ public string FirstName { get; set; }
+ }
+}