mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 05:30:13 +01:00
9 lines
138 B
C#
9 lines
138 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace WebApp.DTOs;
|
|
|
|
public record class SingleSkillDto
|
|
(
|
|
[Required] int Skill
|
|
);
|