using System.ComponentModel.DataAnnotations; using WebApp.Entities; namespace WebApp.DTOs; public record class EventRegistrationDto { public int EventId { get; set; } public int UserId { get; set; } public string UserName { get; set; } public DateTime RegisteredAt { get; set; } public EventRegistrationDto() { } };