aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ApartmentManager/HousingWebAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs')
-rw-r--r--ApartmentManager/HousingWebAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/ApartmentManager/HousingWebAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs b/ApartmentManager/HousingWebAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs
new file mode 100644
index 0000000..7dbcb25
--- /dev/null
+++ b/ApartmentManager/HousingWebAPI/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs
@@ -0,0 +1,11 @@
+namespace HousingWebAPI.Areas.HelpPage.ModelDescriptions
+{
+ public class EnumValueDescription
+ {
+ public string Documentation { get; set; }
+
+ public string Name { get; set; }
+
+ public string Value { get; set; }
+ }
+} \ No newline at end of file