Обновление модели данных

This commit is contained in:
Extrimal 2024-04-10 13:28:09 +04:00
parent 1847bc0b01
commit e85ce78568

View File

@ -1,4 +1,5 @@
using System;
using HotelDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@ -13,6 +14,7 @@ namespace HotelDataModels.Models
DateTime ArrivalDate { get; }
DateTime DepartureDate { get; }
int NumberHoursSpent { get; }
AcceptanceStatus Status { get; }
int TotalCost { get; }
}
}