summaryrefslogtreecommitdiffstats
path: root/src/Data/DTOs/ReservationDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DTOs/ReservationDto.cs')
-rw-r--r--src/Data/DTOs/ReservationDto.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Data/DTOs/ReservationDto.cs b/src/Data/DTOs/ReservationDto.cs
new file mode 100644
index 0000000..c3b1480
--- /dev/null
+++ b/src/Data/DTOs/ReservationDto.cs
@@ -0,0 +1,15 @@
+using System;
+using IOL.Fagprove.Data.Enums;
+
+namespace IOL.Fagprove.Data.DTOs
+{
+ public class ReservationDto
+ {
+ public Guid Id { get; set; }
+ public string Name { get; set; }
+ public string From { get; set; }
+ public string To { get; set; }
+ public string Cabin { get; set; }
+ public ReservationStatus Status { get; set; }
+ }
+} \ No newline at end of file