56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace ChaosBot.Lodestone
|
|
{
|
|
public class FreeCompanyDetailed
|
|
{
|
|
public FreeCompanyDetails FreeCompany;
|
|
public List<FreeCompanyCharacter> FreeCompanyMembers;
|
|
}
|
|
|
|
public class FreeCompanyDetails
|
|
{
|
|
public string Active;
|
|
public int ActiveMemberCount;
|
|
public List<string> Crest;
|
|
public string DC;
|
|
public FreeCompanyEstate Estate;
|
|
public long Formed;
|
|
public string GrandCompany;
|
|
public string ID;
|
|
public string Name;
|
|
public long ParseDate;
|
|
public int Rank;
|
|
public FreeCompanyRanking Ranking;
|
|
public string Recruitment;
|
|
public List<FreeCompanyReputation> Reputation;
|
|
public string Server;
|
|
public string Slogan;
|
|
public string Tag;
|
|
}
|
|
|
|
public class FreeCompanyCharacter : Character
|
|
{
|
|
|
|
}
|
|
|
|
public class FreeCompanyEstate
|
|
{
|
|
public string Greeting;
|
|
public string Name;
|
|
public string Plot;
|
|
}
|
|
|
|
public class FreeCompanyRanking
|
|
{
|
|
public int Monthly;
|
|
public int Weekly;
|
|
}
|
|
|
|
public class FreeCompanyReputation
|
|
{
|
|
public string Name;
|
|
public int Progress;
|
|
public string Rank;
|
|
}
|
|
} |