Files
PracticeCalendar/PracticeCalendar.Application/PracticeEvents/Queries/AttendeeDto.cs
T
2022-10-10 03:17:14 +03:00

11 lines
314 B
C#

namespace PracticeCalendar.Application.PracticeEvents.Queries
{
public class AttendeeDto
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public string EmailAddress { get; set; } = string.Empty;
public bool IsAttending { get; set; }
}
}