namespace GamificationService.Models.DTO; public class InstructionDTO { public long? Id { get; set; } public string? Title { get; set; } public string? Description { get; set; } public List Paragraphs { get; set; } = new List(); public long? CategoryId { get; set; } public DateTime? AssignDate { get; set; } public DateTime? DeadlineDate { get; set; } public bool IsEnabled { get; set; } }