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