2024-08-03 20:17:18 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Questionable.Model.Questing;
|
2024-07-27 13:39:47 +00:00
|
|
|
|
|
|
|
|
|
public sealed class SkipAetheryteCondition
|
|
|
|
|
{
|
|
|
|
|
public bool Never { get; set; }
|
|
|
|
|
public bool InSameTerritory { get; set; }
|
2024-08-03 20:17:18 +00:00
|
|
|
|
public List<ushort> InTerritory { get; set; } = new();
|
2024-07-27 13:39:47 +00:00
|
|
|
|
}
|