Delete EventsDto.cs

This commit is contained in:
AleksDw
2025-05-07 21:33:10 +02:00
parent 33f8e80f62
commit 1377fa7207

View File

@@ -1,15 +0,0 @@
using System.ComponentModel.DataAnnotations;
using WebApp.Entities;
namespace WebApp.DTOs;
public record class EventsDto(
int EventId,
int OrganisationId, //foreign key
[StringLength(200)] string Title,
[StringLength(800)] string Description,
[StringLength(100)] string Location,
DateTime EventDate,
Organisation? Organisation,
ICollection<EventSkill> EventSkills,
ICollection<EventRegistration> EventRegistrations
);