feat: add first volunteer skill endpoint (add_skill) along with dtos

This commit is contained in:
2025-05-31 18:19:15 +02:00
parent 2a8fff39c9
commit 32027f7384
5 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using System.ComponentModel.DataAnnotations;
namespace WebApp.DTOs;
public record class SkillSummaryDto
(
[Required] int SkillId,
[Required] string SkillName
);