mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +01:00
17 lines
424 B
C#
17 lines
424 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using WebApp.Entities;
|
|
|
|
namespace WebApp.DTOs;
|
|
|
|
// Input values in JSON file
|
|
public record class EventSearchDto
|
|
(
|
|
int? OrganisationId,
|
|
string? Title,
|
|
string? Description,
|
|
string? Location,
|
|
DateTime? EventDate,
|
|
ICollection<EventSkill>? EventSkills, // obecnie nie dotyczy
|
|
ICollection<EventRegistration>? EventRegistrations // obecnie nie dotyczy
|
|
);
|