Push changes
This commit is contained in:
+15
-9
@@ -5,14 +5,20 @@ namespace Prospect.Server.Api.Services.CloudScript.Models.Data;
|
||||
public class FYVivoxJoinTokenRequest
|
||||
{
|
||||
[JsonPropertyName("userName")]
|
||||
public string? Username { get; set; }
|
||||
|
||||
public string Username { get; set; }
|
||||
|
||||
[JsonPropertyName("channel")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Channel { get; set; }
|
||||
|
||||
// TODO: channelType
|
||||
// TODO: hasText
|
||||
// TODO: hasAudio
|
||||
// TODO: channelId
|
||||
public string Channel { get; set; }
|
||||
|
||||
[JsonPropertyName("hasText")]
|
||||
public bool HasText { get; set; }
|
||||
|
||||
[JsonPropertyName("hasAudio")]
|
||||
public bool HasAudio { get; set; }
|
||||
|
||||
[JsonPropertyName("channelType")]
|
||||
public int ChannelType { get; set; }
|
||||
|
||||
[JsonPropertyName("channelId")]
|
||||
public string ChannelID { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user