mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
feat: replace manual event search in favor of dto builders
This commit is contained in:
@@ -12,8 +12,8 @@ public record class EventSummaryDto {
|
||||
[StringLength(500)] public string Description { get; set; }
|
||||
[Required] [StringLength(100)] public string Location { get; set; }
|
||||
[Required] public DateTime? EventDate { get; set; }
|
||||
public ICollection<EventSkill> EventSkills { get; set; }
|
||||
public ICollection<EventRegistration> EventRegistrations { get; set; }
|
||||
public ICollection<SkillSummaryDto> EventSkills { get; set; }
|
||||
public ICollection<EventRegistrationDto> EventRegistrations { get; set; }
|
||||
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user