Initial Commit ...

This commit is contained in:
2024-01-25 04:47:14 +03:30
commit d862146642
37 changed files with 4039 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
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; }
}
}