mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
fix: offload building DTOs to GUHF
DTO building allows for fully returning correct event's skills and registrations
This commit is contained in:
15
WebApp/DTOs/EventRegistrationDto.cs
Normal file
15
WebApp/DTOs/EventRegistrationDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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() { }
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user