diff --git a/src/Yavsc.Abstract/Messaging/RdvQueryEvent.cs b/src/Yavsc.Abstract/Messaging/RdvQueryEvent.cs index b3109c74..b2168bd7 100644 --- a/src/Yavsc.Abstract/Messaging/RdvQueryEvent.cs +++ b/src/Yavsc.Abstract/Messaging/RdvQueryEvent.cs @@ -33,7 +33,7 @@ namespace Yavsc.Models.Messaging public RdvQueryEvent(string subTopic) { - Topic = MessagingConstants.TopicRdvQuery; + Topic = Topics.RdvQuery; SubTopic = subTopic; } diff --git a/src/Yavsc.Abstract/Messaging/Topics.cs b/src/Yavsc.Abstract/Messaging/Topics.cs index ee0ec9b9..c9d5c22e 100644 --- a/src/Yavsc.Abstract/Messaging/Topics.cs +++ b/src/Yavsc.Abstract/Messaging/Topics.cs @@ -1,9 +1,10 @@ namespace Yavsc.Abstract.Messaging { - public static class MessagingConstants { - public static readonly string TopicGeneral = "/topic/general"; - public static readonly string TopicRdvQuery = "/topic/RdvQuery"; - public static readonly string TopicEstimation = "/topic/Estimation"; - public static readonly string TopicHairCutQuery = "/topic/HairCutQuery"; + public static class Topics { + public static readonly string General = "/topic/general"; + public static readonly string RdvQuery = "/topic/RdvQuery"; + public static readonly string Estimation = "/topic/Estimation"; + public static readonly string HairCutQuery = "/topic/HairCutQuery"; + } } \ No newline at end of file diff --git a/version.txt b/version.txt index 24ec43a3..9a4eccc2 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.6-rc07 +1.0.6-rc08