10 lines
287 B
C#
10 lines
287 B
C#
namespace HotelDataModels.Models
|
|
{
|
|
public interface IConferenceBookingModel : IId
|
|
{
|
|
int ConferenceId { get; }
|
|
int HeadwaiterId { get; }
|
|
DateTime? BookingDate { get; }
|
|
public Dictionary<int, ILunchModel> ConferenceBookingLunches { get; }
|
|
}
|
|
} |