mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
sync updates
This commit is contained in:
16
MediaBrowser.Controller/Connect/ConnectSupporterSummary.cs
Normal file
16
MediaBrowser.Controller/Connect/ConnectSupporterSummary.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using MediaBrowser.Model.Connect;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Controller.Connect
|
||||
{
|
||||
public class ConnectSupporterSummary
|
||||
{
|
||||
public int MaxUsers { get; set; }
|
||||
public List<ConnectUser> Users { get; set; }
|
||||
|
||||
public ConnectSupporterSummary()
|
||||
{
|
||||
Users = new List<ConnectUser>();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -69,5 +69,11 @@ namespace MediaBrowser.Controller.Connect
|
||||
/// <param name="token">The token.</param>
|
||||
/// <returns><c>true</c> if [is authorization token valid] [the specified token]; otherwise, <c>false</c>.</returns>
|
||||
bool IsAuthorizationTokenValid(string token);
|
||||
|
||||
/// <summary>
|
||||
/// Gets the connect supporter summary.
|
||||
/// </summary>
|
||||
/// <returns>Task<ConnectSupporterSummary>.</returns>
|
||||
Task<ConnectSupporterSummary> GetConnectSupporterSummary();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -99,6 +99,7 @@
|
||||
<Compile Include="Collections\CollectionCreationOptions.cs" />
|
||||
<Compile Include="Collections\CollectionEvents.cs" />
|
||||
<Compile Include="Collections\ICollectionManager.cs" />
|
||||
<Compile Include="Connect\ConnectSupporterSummary.cs" />
|
||||
<Compile Include="Connect\IConnectManager.cs" />
|
||||
<Compile Include="Connect\UserLinkResult.cs" />
|
||||
<Compile Include="Devices\CameraImageUploadInfo.cs" />
|
||||
|
||||
Reference in New Issue
Block a user