Files
hermes/WebApp/DTOs/SkillSummaryDto.cs
eee4 efb71b24d3 fix: offload building DTOs to GUHF
DTO building allows for fully returning correct event's
skills and registrations
2025-06-01 20:33:58 +02:00

14 lines
250 B
C#

using System.ComponentModel.DataAnnotations;
using WebApp.Entities;
namespace WebApp.DTOs;
public record class SkillSummaryDto
{
public int? SkillId { get; set; }
public string? SkillName { get; set; }
public SkillSummaryDto() { }
};