mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
12 lines
234 B
C#
12 lines
234 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using WebApp.Entities;
|
|
|
|
namespace WebApp.DTOs;
|
|
|
|
// Output values in JSON file
|
|
public record class EventRegistrationDto(
|
|
int EventId,
|
|
int UserId,
|
|
DateTime RegisteredAt
|
|
);
|