forked from aly/qstbak
muffin v7.5.6
This commit is contained in:
parent
6266f9e6b7
commit
addf2d530f
619 changed files with 264792 additions and 446022 deletions
18
SmartNav.Model/SmartNav.Model.Navigation/ZoneBoundary.cs
Normal file
18
SmartNav.Model/SmartNav.Model.Navigation/ZoneBoundary.cs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue