Files
Ayay/SHH.MjpegPlayer/MjpegStatics.cs

26 lines
647 B
C#

namespace SHH.MjpegPlayer
{
/// <summary>
/// 静态参数集合
/// </summary>
public class MjpegStatics
{
/// <summary>
/// 配置项
/// </summary>
public static MjpegConfig Cfg { get; set; }
= new MjpegConfig();
/// <summary>
/// 会话集合
/// </summary>
public static MjpegSessions Sessions { get; private set; }
= new MjpegSessions();
/// <summary>
/// 图片通道集合
/// </summary>
public static ImageChannels ImageChannels { get; private set; }
= new ImageChannels();
}
}