Questionable/Questionable/Model/V1/QuestSequence.cs

11 lines
246 B
C#
Raw Normal View History

2024-05-25 21:51:37 +00:00
using System.Collections.Generic;
namespace Questionable.Model.V1;
public class QuestSequence
{
2024-05-26 13:43:33 +00:00
public required int Sequence { get; set; }
public string Comment { get; set; }
2024-05-25 21:51:37 +00:00
public List<QuestStep> Steps { get; set; } = new();
}