17 lines
343 B
C#
17 lines
343 B
C#
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; }
|
|
}
|
|
}
|