mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
18 lines
483 B
C#
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
|
|
|
|
);
|