namespace Kreta.MessageBroker { /// /// Constants /// static class Constants { /// /// Notification message client /// public static class MobileNotificationMessageClient { /// /// Logger name /// public const string LoggerName = "MobileNotificationMessageLogger"; /// /// Name /// public const string Name = "StudentMobileNotification"; } /// /// Azure /// internal static class Azure { /// /// Event hub /// internal static class EventHub { /// /// Name maximum length /// public const int NameMaximumLength = 64; /// /// Connection string maximum length /// public const int ConnectionStringMaximumLength = 256; /// /// Event hub entity path maximum length /// public const int EntityPathMaximumLength = 256; } } } }