mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 03:05:20 +01:00
15 lines
349 B
C#
15 lines
349 B
C#
|
|
namespace MediaBrowser.Model.ApiClient
|
|
{
|
|
public class ConnectionResult
|
|
{
|
|
public ConnectionState State { get; set; }
|
|
public ServerInfo ServerInfo { get; set; }
|
|
public IApiClient ApiClient { get; set; }
|
|
|
|
public ConnectionResult()
|
|
{
|
|
State = ConnectionState.Unavailable;
|
|
}
|
|
}
|
|
}
|