1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-03-30 18:25:57 -04:00
Files
Radarr/src/Microsoft.AspNet.SignalR.Core/Infrastructure/IServerIdManager.cs
2013-11-21 21:26:57 -08:00

16 lines
419 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.Infrastructure
{
/// <summary>
/// Generates a server id
/// </summary>
public interface IServerIdManager
{
/// <summary>
/// The id of the server.
/// </summary>
string ServerId { get; }
}
}