qstbak/QuestionableCompanion/QuestionableCompanion.Models/SequenceConfig.cs
2025-12-04 04:39:08 +10:00

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;
}