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.
24 lines
595 B
24 lines
595 B
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; }
|
|
}
|
|
}
|