chaosbot/ChaosBot/Lodestone/Character.cs

19 lines
389 B
C#

using Antlr4.Runtime.Misc;
namespace ChaosBot.Lodestone
{
public class Character
{
public string Avatar;
public int FeastMatches;
public long ID;
[Nullable]
public string Lang;
public string Name;
[Nullable]
public string Rank;
[Nullable]
public string RankIcon;
public string Server;
}
}