mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
9 lines
204 B
C#
9 lines
204 B
C#
namespace ACE.Adapter.GDLE.Models
|
|
{
|
|
public class LandblockLink
|
|
{
|
|
public uint target { get; set; }
|
|
public uint source { get; set; }
|
|
public string desc { get; set; }
|
|
}
|
|
}
|