8 lines
197 B
C#
8 lines
197 B
C#
namespace BeReadyBackend.DTO.Achievements;
|
|
|
|
public class GetAchievementDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
public string? Description { get; set; }
|
|
} |