Merge branch 'Prothotype-login-page' into MyBranchKarol

This commit is contained in:
2025-05-31 18:24:59 +02:00
19 changed files with 1044 additions and 17 deletions

View File

@@ -0,0 +1,8 @@
using System.ComponentModel.DataAnnotations;
namespace WebApp.DTOs;
public record class SingleSkillDto
(
[Required] int Skill
);

View File

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