Files
hermes/WebApp/DTOs/EventSearchDto.cs

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