Files
hermes/WebApp/DTOs/EventSearchDto.cs
eee4 1eb104945a chore: get rid of organizationId from payload on event creation view
it's redundant and inferred from the user's token
2025-05-18 17:12:18 +02:00

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
);