Created all endpoints and DTO to achievements

This commit is contained in:
2026-02-21 15:45:55 +01:00
parent 3588200211
commit e677ff0f0a
11 changed files with 183 additions and 1 deletions
@@ -0,0 +1,8 @@
namespace BeReadyBackend.DTO.Achievements;
public class GetSuccessDto
{
public int Id { get; set; }
public string? Label { get; set; }
public string? Description { get; set; }
}
@@ -0,0 +1,7 @@
namespace BeReadyBackend.DTO.Achievements;
public class UnlockAchievementDto
{
public int AchievementId { get; set; }
public int UserId { get; set; }
}