mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 13:40:13 +01:00
12 lines
241 B
C#
12 lines
241 B
C#
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
|
|
);
|
|
|