11 lines
247 B
C#
Raw Normal View History

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