mirror of
https://github.com/Radarr/Radarr
synced 2026-01-08 16:44:16 +01:00
12 lines
391 B
C#
12 lines
391 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
|
|
|
|
namespace Microsoft.AspNet.SignalR.Messaging
|
|
{
|
|
internal class TopicState
|
|
{
|
|
public const int NoSubscriptions = 0;
|
|
public const int HasSubscriptions = 1;
|
|
public const int Dying = 2;
|
|
public const int Dead = 3;
|
|
}
|
|
}
|