9 lines
193 B
C#
Raw Normal View History

2024-03-09 18:07:43 +04:00
namespace HotelDataModels.Models
{
public interface ILunchModel : IId
{
string LunchName { get; }
double LunchPrice { get; }
int HeadwaiterId { get; }
}
}