mirror of
https://github.com/araxiaonline/WoWDBDefs.git
synced 2026-06-13 11:42:48 -04:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace DBDefsLib
|
|
{
|
|
public class Structs
|
|
{
|
|
public struct DBDefinition
|
|
{
|
|
public Dictionary<string, ColumnDefinition> columnDefinitions;
|
|
public VersionDefinitions[] versionDefinitions;
|
|
}
|
|
|
|
public struct VersionDefinitions
|
|
{
|
|
public Build[] builds;
|
|
public BuildRange[] buildRanges;
|
|
public string[] layoutHashes;
|
|
public string comment;
|
|
public Definition[] definitions;
|
|
}
|
|
|
|
public struct Definition
|
|
{
|
|
public int size;
|
|
public int arrLength;
|
|
public string name;
|
|
public bool isID;
|
|
public bool isRelation;
|
|
public bool isNonInline;
|
|
public bool isSigned;
|
|
public string comment;
|
|
}
|
|
|
|
public struct ColumnDefinition
|
|
{
|
|
public string type;
|
|
public string foreignTable;
|
|
public string foreignColumn;
|
|
public bool verified;
|
|
public string comment;
|
|
}
|
|
}
|
|
}
|