Skip to content

Commit 307c439

Browse files
committed
req: Adds base model inheritance to Booking
Updates the Booking class to inherit from the base Model class, providing common functionality.
1 parent 971b702 commit 307c439

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/HyperGuestSDK/Api/Book/BookResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public enum BookingStatus
4040
/// <summary>
4141
/// Main content of the booking response, including status, dates, payment, prices, rooms, and more.
4242
/// </summary>
43-
public class Booking
43+
public class Booking : Model<Booking>
4444
{
4545
/// <summary>
4646
/// The current status of the booking (e.g., confirmed, pending).

0 commit comments

Comments
 (0)