Push changes

This commit is contained in:
Yury
2025-02-24 01:06:32 +02:00
parent 1bfb16539f
commit 280b87314c
126 changed files with 5935 additions and 1265 deletions
@@ -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; }
}