PIbd-21_Shanygin_A.V_BaseData/Hotel/HotelContracts/SearchModels/BookingSearchModel.cs

15 lines
233 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.SearchModels
{
public class BookingSearchModel
{
public int? Id { get; set; }
}
}