File tree Expand file tree Collapse file tree 5 files changed +51
-0
lines changed
streamerbot/3.api/3.csharp/_classes Expand file tree Collapse file tree 5 files changed +51
-0
lines changed Original file line number Diff line number Diff line change 1+ ``` csharp
2+ public class GuestSession
3+ {
4+ public string Id { get ; set ; }
5+ public List <GuestStar > Guests { get ; set ; }
6+ }
7+ ```
Original file line number Diff line number Diff line change 1+ ``` csharp
2+ public class GuestStar
3+ {
4+ public string SlotId { get ; set ; }
5+ public bool IsLive { get ; set ; }
6+ public string UserId { get ; set ; }
7+ public string UserName { get ; set ; }
8+ public string UserLogin { get ; set ; }
9+ public int Volume { get ; set ; }
10+ public DateTime AssignedAt { get ; set ; }
11+ public MediaSettings AudioSettings { get ; set ; }
12+ public MediaSettings VideoSettings { get ; set ; }
13+ }
14+ ```
Original file line number Diff line number Diff line change 1+ ``` csharp
2+ public class GuestStarInvite
3+ {
4+ public string UserId { get ; set ; }
5+ public DateTime InvitedAt { get ; set ; }
6+ public string Status { get ; set ; }
7+ public bool IsVideoEnabled { get ; set ; }
8+ public bool IsAudioEnabled { get ; set ; }
9+ public bool IsVideoAvailable { get ; set ; }
10+ public bool IsAudioAvailable { get ; set ; }
11+ }
12+ ```
Original file line number Diff line number Diff line change 1+ ``` csharp
2+ public class GuestStarSettings
3+ {
4+ public bool IsModeratorSendLiveEnabled { get ; set ; }
5+ public int SlotCount { get ; set ; }
6+ public bool IsBrowserSourceAudioEnabled { get ; set ; }
7+ public string GroupLayout { get ; set ; }
8+ public string BrowserSourceToken { get ; set ; }
9+ }
10+ ```
Original file line number Diff line number Diff line change 1+ ``` csharp
2+ public class MediaSettings
3+ {
4+ public bool IsHostEnabled { get ; set ; }
5+ public bool IsGuestEnabled { get ; set ; }
6+ public bool IsAvailable { get ; set ; }
7+ }
8+ ```
You can’t perform that action at this time.
0 commit comments