Questionable/Questionable.Model/Questing/SinglePlayerDutyOptions.cs

11 lines
247 B
C#

using System.Collections.Generic;
namespace Questionable.Model.Questing;
public sealed class SinglePlayerDutyOptions
{
public bool Enabled { get; set; }
public List<string> Notes { get; set; } = [];
public byte Index { get; set; }
}