using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using ThAmCo.Events.Models.Dto; namespace ThAmCo.Events.Models.ViewModels.Events { public class EventAddMenuModel { public int EventId { get; set; } public List Menus { get; set; } } }