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

11 lines
164 B
C#

namespace GamificationService.Models.DTO;
public class InstructionCategoryDTO
{
public long? Id { get; set; }
public string? Title { get; set; } = null!;
}