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