Files
hermes/WebApp/DTOs/EventSearchDto.cs
2025-05-31 16:03:55 +02:00

18 lines
483 B
C#

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<EventSkill>? EventSkills, // obecnie nie dotyczy
ICollection<EventRegistration>? EventRegistrations // obecnie nie dotyczy
);