19 lines
341 B
C#
19 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HotelDataModels.Models
|
|
{
|
|
public interface IRoomModel : IId
|
|
{
|
|
int WorkerId { get; }
|
|
int Number { get; }
|
|
int Floor { get; }
|
|
int NumberOfBeds { get; }
|
|
string Condition { get; }
|
|
int Cost { get; }
|
|
}
|
|
}
|