namespace Cis.Core; public class ZLMediaKitOptions : IConfigurableOptions { /// /// 服务IP /// public string Ip { get; set; } /// /// 服务端口 /// public string Port { get; set; } /// /// 服务鉴权秘钥 /// public string Secret { get; set; } /// /// 默认虚拟主机 /// public string DefaultVhost { get; set; } /// /// 默认应用名 /// public string DefaultApp { get; set; } /// /// rtsp拉流时,拉流方式 /// public string RtpType { get; set; } /// /// 拉流超时时间,单位秒,float类型 /// public float TimeoutSec { get; set; } /// /// 拉流重试次数 /// public int RetryCount { get; set; } }