qstbak/Questionable.Model/Questionable.Model.Questing/DutyOptions.cs
2025-11-19 12:01:37 +10:00

16 lines
339 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>();
public EDutyMode? DutyMode { get; set; }
}