Files
2020-06-19 19:28:07 +02:00

23 lines
533 B
C#

namespace Thermo.Active.Model.ConfigModels
{
public class CmsConnectConfigModel
{
public CmsConnectConfigModel()
{
Gateway = new GatewayConfigModel();
}
public bool Enabled { get; set; }
public GatewayConfigModel Gateway { get; set; }
}
public class GatewayConfigModel
{
public string Address { get; set; }
public string Token { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
}