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