/// <summary> /// Closes the DM /// </summary> public void Leave() { DMChannel group = Client.DeleteChannel(Id).ToDMChannel(); Name = group.Name; Recipients = group.Recipients; }
/// <summary> /// Updates the channel's info /// </summary> public override void Update() { DMChannel channel = Client.GetDMChannel(Id); Json = channel.Json; Recipients = channel.Recipients; }