Skip to content

Commit 95e06fb

Browse files
authored
Add Guest Star classes found in changelog v0.1.21 (#346)
1 parent 54c4191 commit 95e06fb

File tree

5 files changed

+51
-0
lines changed

5 files changed

+51
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
```csharp
2+
public class GuestSession
3+
{
4+
public string Id { get; set; }
5+
public List<GuestStar> Guests { get; set; }
6+
}
7+
```
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
```
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
```
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
```
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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+
```

0 commit comments

Comments
 (0)