Infrastructure/OpenAuth.App/Common/KikvisionConfig.cs

43 lines
1014 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Common
{
public class KikvisionConfig
{
/// <summary>
/// 综合安防管理平台 url
/// </summary>
public string Url { get; set; }
public int Port { get; set; }
/// <summary>
/// AppKey
/// </summary>
public string AppKey { get; set; }
/// <summary>
/// SecretKey
/// </summary>
public string SecretKey { get; set; }
}
public class KikvisionConfig2
{
/// <summary>
/// 综合安防管理平台 url
/// </summary>
public string Url { get; set; }
public int Port { get; set; }
/// <summary>
/// AppKey
/// </summary>
public string AppKey { get; set; }
/// <summary>
/// SecretKey
/// </summary>
public string SecretKey { get; set; }
}
}