feature: Add SelfStream voice state property (#1369)

* Add self_stream voice state property

Adds the self_stream property which is set true when a user is streaming a video to a voice channel

* use flags for selfstream state instead of its own prop
This commit is contained in:
Chris Johnston
2019-09-07 19:08:40 -07:00
committed by Christopher F
parent b0a595be77
commit 9bb08c9ba4
9 changed files with 29 additions and 3 deletions

View File

@@ -26,5 +26,7 @@ namespace Discord.API
public bool SelfMute { get; set; }
[JsonProperty("suppress")]
public bool Suppress { get; set; }
[JsonProperty("self_stream")]
public bool SelfStream { get; set; }
}
}