Files
hermes/WebApp/DTOs/SingleSkillDto.cs

9 lines
138 B
C#

using System.ComponentModel.DataAnnotations;
namespace WebApp.DTOs;
public record class SingleSkillDto
(
[Required] int Skill
);