namespace Cis.Application.Core.Component.ZLMediaKit;
public class StreamConnInfo
{
///
/// 虚拟主机
///
public string Vhost { get; set; }
///
/// 应用名
///
public string App { get; set; }
///
/// 流id
///
public string Stream { get; set; }
public static StreamConnInfo New(string vhost, string app, string stream)
{
return new() { Vhost = vhost, App = app, Stream = stream };
}
}