aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonatas Adamonis <dona0169@edu.easj.dk>2017-05-10 17:32:55 +0200
committerDonatas Adamonis <dona0169@edu.easj.dk>2017-05-10 17:32:55 +0200
commit3a34870caabcc05f7d07ad5d93b30d15169132ac (patch)
tree1c53fdf33d34d11a72f5ff48ea196dcf0cd4c0f3 /ApartmentManager/HousingWebApi/Models
parent32c56dd96469fcded2362daec6184126306127aa (diff)
final version of apartment resident page
Diffstat (limited to 'ApartmentManager/HousingWebApi/Models')
-rw-r--r--ApartmentManager/HousingWebApi/Models/AllResident.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/ApartmentManager/HousingWebApi/Models/AllResident.cs b/ApartmentManager/HousingWebApi/Models/AllResident.cs
new file mode 100644
index 0000000..655ee84
--- /dev/null
+++ b/ApartmentManager/HousingWebApi/Models/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; }
+ }
+}