mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-29 18:14:28 -04:00
13 lines
391 B
C#
13 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;
|
|
}
|
|
}
|