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.
14 lines
275 B
14 lines
275 B
3 months ago
|
namespace Kean.Infrastructure.SignalR
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// SignalR 配置项
|
||
|
/// </summary>
|
||
|
public sealed class SignalROptions
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Hub 集合
|
||
|
/// </summary>
|
||
|
public HubCollection Hubs { get; set; }
|
||
|
}
|
||
|
}
|