2025-11-06 16:46:40 +08:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|
2026-01-05 11:16:42 +08:00
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
2025-11-06 16:46:40 +08:00
|
|
|
|
}
|