mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 08:15:28 +03:00
fixes #273 - Marking/unmarking Favorite status doesn't cause a library changed notification
This commit is contained in:
23
MediaBrowser.Model/Session/UserDataChangeInfo.cs
Normal file
23
MediaBrowser.Model/Session/UserDataChangeInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using MediaBrowser.Model.Dto;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace MediaBrowser.Model.Session
|
||||
{
|
||||
/// <summary>
|
||||
/// Class UserDataChangeInfo
|
||||
/// </summary>
|
||||
public class UserDataChangeInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the user id.
|
||||
/// </summary>
|
||||
/// <value>The user id.</value>
|
||||
public string UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the user data list.
|
||||
/// </summary>
|
||||
/// <value>The user data list.</value>
|
||||
public List<UserItemDataDto> UserDataList { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user