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.
24 lines
526 B
24 lines
526 B
2 years ago
|
namespace Cis.Application.Core.Component.ZLMediaKit;
|
||
|
|
||
|
public class StreamConnInfo
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 虚拟主机
|
||
|
/// </summary>
|
||
|
public string Vhost { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 应用名
|
||
|
/// </summary>
|
||
|
public string App { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 流id
|
||
|
/// </summary>
|
||
|
public string Stream { get; set; }
|
||
|
|
||
|
public static StreamConnInfo New(string vhost, string app, string stream)
|
||
|
{
|
||
|
return new() { Vhost = vhost, App = app, Stream = stream };
|
||
|
}
|
||
|
}
|