Created all endpoints and DTO to achievements
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user