nice refactorings

This commit is contained in:
2022-10-10 03:17:14 +03:00
parent 4ca234aec8
commit 28a6981001
30 changed files with 622 additions and 141 deletions
@@ -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>();
}
}