feat: Adds property MatrixRoutingKey to EssentialsAvRoomPropertiesConfig

This commit is contained in:
Neil Dorin
2024-03-28 11:18:22 -06:00
parent 5ccf298584
commit a7654aa77d

View File

@@ -210,6 +210,10 @@ namespace PepperDash.Essentials.Room.Config
/// </summary> /// </summary>
[JsonProperty("userCanChangeShareMode")] [JsonProperty("userCanChangeShareMode")]
public bool UserCanChangeShareMode { get; set; } public bool UserCanChangeShareMode { get; set; }
[JsonProperty("matrixRoutingKey", NullValueHandling = NullValueHandling.Ignore)]
public string MatrixRoutingKey { get; set; }
} }
public class EssentialsConferenceRoomPropertiesConfig : EssentialsAvRoomPropertiesConfig public class EssentialsConferenceRoomPropertiesConfig : EssentialsAvRoomPropertiesConfig
@@ -218,6 +222,7 @@ namespace PepperDash.Essentials.Room.Config
public string VideoCodecKey { get; set; } public string VideoCodecKey { get; set; }
[JsonProperty("audioCodecKey")] [JsonProperty("audioCodecKey")]
public string AudioCodecKey { get; set; } public string AudioCodecKey { get; set; }
} }
public class EssentialsEnvironmentPropertiesConfig public class EssentialsEnvironmentPropertiesConfig