PIbd-21_Kurs_Work_Hotel/Hotel/HotelContracts/ViewModels/ConferenceBookingViewModel.cs

22 lines
656 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using HotelDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.ViewModels
{
public class ConferenceBookingViewModel : IConferenceBookingModel
{
public int Id { get; set; }
public int AdministratorId { get; set; }
public int? ConferenceId { get; set; }
public string PlaceСonference { get; set; } = string.Empty;
[DisplayName("Дата конференции")]
public DateTime? DateСonference { get; set; }
public Dictionary<int, IDinnerModel> ConferenceBookingDinners { get; set; } = new();
}
}