using System.ComponentModel.DataAnnotations; using WebApp.Entities; namespace WebApp.DTOs; // Input values in JSON file public record class EventSearchDto ( int? OrganisationId, string? TitleOrDescription, string? Location, DateTime? EventDateFrom, // zakres daty od DateTime? EventDateTo, // zakres daty do ICollection? EventSkills, // obecnie nie dotyczy ICollection? EventRegistrations // obecnie nie dotyczy );