48 lines
1.5 KiB
C#
48 lines
1.5 KiB
C#
|
using System;
|
||
|
using MediaBrowser.Model.Configuration;
|
||
|
using MediaBrowser.Model.Users;
|
||
|
|
||
|
namespace MediaBrowser.Model.Dto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Class PublicUserDto. Its goal is to show only public information about a user
|
||
|
/// </summary>
|
||
|
public class PublicUserDto : IItemDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the name.
|
||
|
/// </summary>
|
||
|
/// <value>The name.</value>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the primary image tag.
|
||
|
/// </summary>
|
||
|
/// <value>The primary image tag.</value>
|
||
|
public string PrimaryImageTag { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets a value indicating whether this instance has password.
|
||
|
/// </summary>
|
||
|
/// <value><c>true</c> if this instance has password; otherwise, <c>false</c>.</value>
|
||
|
public bool HasPassword { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets a value indicating whether this instance has configured password.
|
||
|
/// </summary>
|
||
|
/// <value><c>true</c> if this instance has configured password; otherwise, <c>false</c>.</value>
|
||
|
public bool HasConfiguredPassword { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the primary image aspect ratio.
|
||
|
/// </summary>
|
||
|
/// <value>The primary image aspect ratio.</value>
|
||
|
public double? PrimaryImageAspectRatio { get; set; }
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return Name ?? base.ToString();
|
||
|
}
|
||
|
}
|
||
|
}
|