using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ThAmCo.Events.Models.ViewModels.Events { public class EventRegisterAttendanceModel { public int EventId { get; set; } public int CustomerId { get; set; } public bool Attending { get; set; } } }