Y2S1-Web_Apps_and_Services/ThAmCo.Events/Models/ViewModels/Events/EventAddCustomerModel.cs
2020-06-07 22:36:12 +01:00

16 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using ThAmCo.Events.Data;
namespace ThAmCo.Events.Models.ViewModels.Events
{
public class EventAddCustomerModel
{
public int EventId { get; set; }
public List<Customer> Customer { get; set; }
}
}