Files
gamification-service/Models/DTO/RightDTO.cs

8 lines
150 B
C#

namespace GamificationService.Models.DTO;
public class RightDTO
{
public string Name { get; set; }
public string Description { get; set; }
}