Added Server CMSConnect Config

This commit is contained in:
Nicola Carminati
2019-08-22 10:41:57 +02:00
parent baf8ca0510
commit eea1ecb6d2
13 changed files with 280 additions and 9 deletions
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.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; }
}
}