You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
697 B
28 lines
697 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Model.Dto;
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Interface IHasUserData
|
|
/// </summary>
|
|
public interface IHasUserData
|
|
{
|
|
List<string> GetUserDataKeys();
|
|
|
|
/// <summary>
|
|
/// Fills the user data dto values.
|
|
/// </summary>
|
|
void FillUserDataDtoValues(UserItemDataDto dto, UserItemData userData, BaseItemDto itemDto, User user, ItemFields[] fields);
|
|
|
|
bool EnableRememberingTrackSelections { get; }
|
|
|
|
bool SupportsPlayedStatus { get; }
|
|
|
|
Guid Id { get; }
|
|
}
|
|
}
|