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