16 lines
312 B
C#
Raw Normal View History

2024-04-21 21:19:22 +04:00
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; }
}
}