-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsvhandler.cs
More file actions
36 lines (29 loc) · 949 Bytes
/
csvhandler.cs
File metadata and controls
36 lines (29 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
namespace CSVmanager
{
public class GuestsFile
{
public string Name { get; set; }
public string PassportNumber { get; set; }
public string MembershipStatus { get; set; }
public double MembershipPoints { get; set; }
}
public class RoomsFile
{
public string RoomType { get; set; }
public int RoomNumber { get; set; }
public string BedConfiguration { get; set; }
public int DailyRate { get; set; }
}
public class StaysFile
{
public string Name { get; set; }
public string PassportNumber { get; set; }
public string IsCheckedIn { get; set; }
public DateOnly CheckinDate { get; set; }
public DateOnly CheckoutDate { get; set; }
public int RoomNumber { get; set; }
public string Wifi { get; set; }
public string Breakfast { get; set; }
public string ExtraBed { get; set; }
}
}