Camera Information System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
634 B

namespace Cis.Application.Core;
public class CameraDataOptions : IConfigurableOptions
{
/// <summary>
/// 是否懒加载
/// </summary>
public bool LazyInit { get; set; }
/// <summary>
/// 循环间隔,单位毫秒
/// </summary>
public int LoopInterval { get; set; }
}
/// <summary>
/// PtzServer选项
/// </summary>
public class PtzServerOptions : IConfigurableOptions
{
/// <summary>
/// 服务类别
/// </summary>
public string Type { get; set; }
/// <summary>
/// 服务IP
/// </summary>
public string Ip { get; set; }
/// <summary>
/// 服务端口
/// </summary>
public int Port { get; set; }
}