using System.ComponentModel.DataAnnotations; namespace WebApp.DTOs; public record class EventsDto( int Id, int IdOrganisation, //foreign key string Place, [StringLength(200)] string Description, DateTime Date );