mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 09:01:18 +03:00
nice refactorings
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace PracticeCalendar.Application.PracticeEvents.Queries
|
||||
{
|
||||
public class PracticeEventDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public string Description { get; set; } = string.Empty;
|
||||
|
||||
public DateTime StartTime { get; set; }
|
||||
public DateTime EndTime { get; set; }
|
||||
|
||||
public IList<AttendeeDto> Attendees { get; set; } = new List<AttendeeDto>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user