using System; namespace xPushService.Models { /// /// Describe a Hub to Register ... /// public class XHubDescriptor { /// /// Specified the Hub Route ... /// /// public string Route { get; set; } /// /// Specified the Hub Class Type ... /// /// public Type Hub { get; set; } } }