11 lines
266 B
C#
11 lines
266 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Questionable.Model.Questing;
|
|
|
|
public sealed class SkipAetheryteCondition
|
|
{
|
|
public bool Never { get; set; }
|
|
public bool InSameTerritory { get; set; }
|
|
public List<ushort> InTerritory { get; set; } = new();
|
|
}
|