From 5977159678f79aeb3c00523c141c16198ced441a Mon Sep 17 00:00:00 2001 From: Daniel-I-Am Date: Thu, 4 Jun 2020 20:32:51 +0200 Subject: [PATCH] Add FreeCompany response object --- ChaosBot/Lodestone/FreeCompany.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ChaosBot/Lodestone/FreeCompany.cs diff --git a/ChaosBot/Lodestone/FreeCompany.cs b/ChaosBot/Lodestone/FreeCompany.cs new file mode 100644 index 0000000..45826df --- /dev/null +++ b/ChaosBot/Lodestone/FreeCompany.cs @@ -0,0 +1,12 @@ +using System.Collections.Generic; + +namespace ChaosBot.Lodestone +{ + public class FreeCompany + { + public List Crest; + public string ID; + public string Name; + public string Server; + } +} \ No newline at end of file