forked from aly/qstbak
18 lines
411 B
C#
18 lines
411 B
C#
namespace SmartNav.Model.Navigation;
|
|
|
|
public sealed class ZoneBoundary
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
public BoundarySide Side1 { get; set; } = new BoundarySide();
|
|
|
|
public BoundarySide Side2 { get; set; } = new BoundarySide();
|
|
|
|
public uint? RequiredQuest { get; set; }
|
|
|
|
public bool RequiresFlying { get; set; }
|
|
|
|
public bool OneWay { get; set; }
|
|
}
|