Files
cms_thermo_active/Thermo.Active.Model/ConfigModels/CmsConnectConfigModel.cs
T
2020-04-09 14:37:07 +02:00

29 lines
650 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}