yavsc/src/Yavsc.Abstract/Messaging/Topics.cs

10 lines
362 B
C#
Raw Normal View History

2018-02-03 20:17:29 +01:00
namespace Yavsc.Abstract.Messaging
{
2019-09-17 11:37:36 +01:00
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";
2018-02-03 20:17:29 +01:00
}
}