namespace Cis.Application.Core; /// /// PtzServer选项 /// public class PtzServerOptions : IConfigurableOptions { /// /// 服务类别 /// public string Type { get; set; } /// /// 服务IP /// public string Ip { get; set; } /// /// 服务端口 /// public int Port { get; set; } }