20 lines
476 B
C#
20 lines
476 B
C#
using System;
|
|
|
|
namespace xPushService.Models {
|
|
/// <summary>
|
|
/// Describe a Hub to Register ...
|
|
/// </summary>
|
|
public class XHubDescriptor {
|
|
/// <summary>
|
|
/// Specified the Hub Route ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public string Route { get; set; }
|
|
|
|
/// <summary>
|
|
/// Specified the Hub Class Type ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public Type Hub { get; set; }
|
|
}
|
|
} |