mirror of
https://github.com/GCMatters/hermes.git
synced 2026-02-04 21:50:12 +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
|
|
);
|