initial commit from an older template
This commit is contained in:
21
Models/DTO/InstructionParagraphDTO.cs
Normal file
21
Models/DTO/InstructionParagraphDTO.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace GamificationService.Models.DTO;
|
||||
|
||||
public class InstructionParagraphDTO
|
||||
{
|
||||
public long? Id { get; set; }
|
||||
|
||||
public long? InstructionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Order defines the order of the paragraphs inside the instruction.
|
||||
/// There must not be two paragraphs with the same order.
|
||||
/// </summary>
|
||||
public int Order { get; set; }
|
||||
|
||||
public string? Text { get; set; } = null!;
|
||||
|
||||
public string? ImageUrl { get; set; }
|
||||
|
||||
public string? VideoUrl { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user