Files
hermes/WebApp/DTOs/EventCreateDto.cs
eee4 f7583738d7 feat: image url migration
registrations can now store image urls, which will be shown at view.html
2025-06-02 03:01:10 +02:00

16 lines
418 B
C#

using System.ComponentModel.DataAnnotations;
using WebApp.Entities;
namespace WebApp.DTOs;
// Input values in JSON file to create event
public record class EventCreateDto
(
[Required][StringLength(50)] string Title,
[StringLength(500)] string Description,
string? ImageURL,
[Required][StringLength(100)] string Location,
[Required] DateTime? EventDate,
ICollection<EventSkill> EventSkills
);