16 lines
312 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 int? Id { get; set; }
public int? RoomNumber { get; set; }
public int? AdministratorId { get; set; }
}
}