CourseWork_Hotel/Hotel/HotelContracts/SearchModels/RoomSearchModel.cs

15 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.SearchModels
{
public class RoomSearchModel
{
public string? RoomName { get; set; } = string.Empty;
public int? Id { get; set; }
}
}