mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-23 17:34:47 +00:00
33 lines
618 B
C#
33 lines
618 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using PepperDash.Essentials.Core.Config;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CotijaConfig
|
|
{
|
|
[JsonProperty("serverUrl")]
|
|
public string ServerUrl { get; set; }
|
|
|
|
[JsonProperty("clientAppUrl")]
|
|
public string ClientAppUrl { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CotijaDdvc01RoomBridgePropertiesConfig
|
|
{
|
|
[JsonProperty("eiscId")]
|
|
public string EiscId { get; set; }
|
|
}
|
|
} |