mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 13:58:29 +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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user