namespace Discord { /// /// Party information for a object. /// public class GameParty { internal GameParty() { } /// /// Gets the ID of the party. /// /// /// A string containing the unique identifier of the party. /// public string Id { get; internal set; } public long Members { get; internal set; } /// /// Gets the party's current and maximum size. /// /// /// A representing the capacity of the party. /// public long Capacity { get; internal set; } } }