11 lines
164 B
C#
11 lines
164 B
C#
namespace GamificationService.Models.DTO;
|
|
|
|
public class InstructionCategoryDTO
|
|
{
|
|
public long? Id { get; set; }
|
|
|
|
public string? Title { get; set; } = null!;
|
|
}
|
|
|
|
|