7 lines
117 B
C#
7 lines
117 B
C#
|
namespace HotelDataModels.Models;
|
|||
|
|
|||
|
public interface IRoom : IId
|
|||
|
{
|
|||
|
string Type { get; }
|
|||
|
int Cost { get; }
|
|||
|
}
|