using System.ComponentModel;
using MediaBrowser.Model.Configuration;
using System;
using System.Runtime.Serialization;
namespace MediaBrowser.Model.Dto
{
///
/// Class UserDto
///
public class UserDto : INotifyPropertyChanged, IItemDto
{
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the id.
///
/// The id.
public string Id { get; set; }
///
/// Gets or sets the primary image tag.
///
/// The primary image tag.
public Guid? PrimaryImageTag { get; set; }
///
/// Gets or sets a value indicating whether this instance has password.
///
/// true if this instance has password; otherwise, false.
public bool HasPassword { get; set; }
///
/// Gets or sets the last login date.
///
/// The last login date.
public DateTime? LastLoginDate { get; set; }
///
/// Gets or sets the last activity date.
///
/// The last activity date.
public DateTime? LastActivityDate { get; set; }
///
/// Gets or sets the configuration.
///
/// The configuration.
public UserConfiguration Configuration { get; set; }
///
/// Gets or sets the primary image aspect ratio.
///
/// The primary image aspect ratio.
public double? PrimaryImageAspectRatio { get; set; }
///
/// Gets or sets the original primary image aspect ratio.
///
/// The original primary image aspect ratio.
public double? OriginalPrimaryImageAspectRatio { get; set; }
///
/// Gets a value indicating whether this instance has primary image.
///
/// true if this instance has primary image; otherwise, false.
[IgnoreDataMember]
public bool HasPrimaryImage
{
get { return PrimaryImageTag.HasValue; }
}
///
/// Initializes a new instance of the class.
///
public UserDto()
{
Configuration = new UserConfiguration();
}
///
/// Occurs when [property changed].
///
public event PropertyChangedEventHandler PropertyChanged;
public override string ToString()
{
return Name ?? base.ToString();
}
}
}