19 lines
459 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; }
2024-05-01 16:10:50 +04:00
public DateTime? DateCreate { get; set; }
public DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
}
2024-04-21 21:19:22 +04:00
}