mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
16 lines
340 B
C#
16 lines
340 B
C#
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() { }
|
|
|
|
};
|