16 lines
304 B
C#
16 lines
304 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TravelAgencyDataModels.Models
|
|||
|
{
|
|||
|
public interface IHotel:IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Address { get; }
|
|||
|
int NumberStars { get; }
|
|||
|
}
|
|||
|
}
|