7 lines
122 B
C#

namespace HotelDataModels.Models;
public interface IRoomModel : IId
{
string Type { get; }
int Cost { get; }
}