2024-04-27 23:03:43 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace TravelAgencyDataModels.Models
|
|
|
|
|
{
|
2024-04-28 21:24:09 +04:00
|
|
|
|
public interface IHotelModel:IId
|
2024-04-27 23:03:43 +04:00
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Address { get; }
|
|
|
|
|
int NumberStars { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|