mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 11:01:27 +03:00
11 lines
314 B
C#
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; }
|
|
}
|
|
}
|