8 lines
236 B
C#
8 lines
236 B
C#
|
|
namespace EngineeringSync.Domain.Constants;
|
||
|
|
|
||
|
|
public static class HubMethodNames
|
||
|
|
{
|
||
|
|
public const string ReceiveChangeNotification = "ReceiveChangeNotification";
|
||
|
|
public const string ProjectConfigChanged = "ProjectConfigChanged";
|
||
|
|
}
|