mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-30 18:25:57 -04:00
16 lines
419 B
C#
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; }
|
|
}
|
|
}
|