qstbak/Questionable.Model/Questionable.Model.Questing/DutyOptions.cs
2025-10-09 07:47:19 +10:00

14 lines
296 B
C#

using System.Collections.Generic;
namespace Questionable.Model.Questing;
public class DutyOptions
{
public bool Enabled { get; set; }
public uint ContentFinderConditionId { get; set; }
public bool LowPriority { get; set; }
public List<string> Notes { get; set; } = new List<string>();
}