Initial fix (#1160)

This commit is contained in:
Still Hsu
2018-10-01 05:09:32 +08:00
committed by Christopher F
parent de4d415053
commit c9ba79ec80
3 changed files with 16 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
using Newtonsoft.Json;
namespace Discord.API
{
public class InviteVanity
{
[JsonProperty("code")]
public string Code { get; set; }
}
}