13 lines
249 B
C#
13 lines
249 B
C#
using System;
|
|
|
|
namespace QuestionableCompanion.Models;
|
|
|
|
[Serializable]
|
|
public class SequenceConfig
|
|
{
|
|
public SequenceType Type { get; set; }
|
|
|
|
public string Value { get; set; } = string.Empty;
|
|
|
|
public bool WaitForCompletion { get; set; } = true;
|
|
}
|