Add FreeCompany response object

This commit is contained in:
Daniel_I_Am 2020-06-04 20:32:51 +02:00
parent b2a62261ce
commit 5977159678
No known key found for this signature in database
GPG Key ID: 80C428FCC9743E84

View File

@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace ChaosBot.Lodestone
{
public class FreeCompany
{
public List<string> Crest;
public string ID;
public string Name;
public string Server;
}
}