2024-04-28 21:24:09 +04:00

16 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelAgencyCompanyContracts.SearchModel
{
public class HotelSearchModel
{
public int? Id { get; set; }
public string? Name { get;set; }
public int? NumberStars { get; set; }
}
}