using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Discord.API { public class MessageActivity { [JsonProperty("type")] public Optional Type { get; set; } [JsonProperty("party_id")] public Optional PartyId { get; set; } } }