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.
|
|
|
#nullable disable
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
|
|
|
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 UserItemDataDto[] UserDataList { get; set; }
|
|
|
|
}
|
|
|
|
}
|