mirror of
https://github.com/araxiaonline/WoWDBDefs.git
synced 2026-06-13 11:42:48 -04:00
37 lines
865 B
C#
37 lines
865 B
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 string[] builds;
|
|
public string[] layoutHashes;
|
|
public Definition[] definitions;
|
|
}
|
|
|
|
public struct Definition
|
|
{
|
|
public int size;
|
|
public int arrLength;
|
|
public string name;
|
|
}
|
|
|
|
public struct ColumnDefinition
|
|
{
|
|
public string type;
|
|
public string foreignTable;
|
|
public string foreignColumn;
|
|
public bool verified;
|
|
public string comment;
|
|
}
|
|
}
|
|
}
|