mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-14 19:51:56 +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;
|
|
}
|
|
}
|