Files
Umbraco-CMS/src/Umbraco.Web/Models/ContentEditing/UserDisplay.cs

43 lines
1.4 KiB
C#
Raw Normal View History

2017-09-12 16:22:16 +02:00
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Runtime.Serialization;
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// Represents a user that is being edited
/// </summary>
[DataContract(Name = "user", Namespace = "")]
[ReadOnly(true)]
public class UserDisplay : UserBasic
{
public UserDisplay()
{
AvailableCultures = new Dictionary<string, string>();
StartContentIds = new List<EntityBasic>();
StartMediaIds = new List<EntityBasic>();
}
/// <summary>
/// Gets the available cultures (i.e. to populate a drop down)
/// The key is the culture stored in the database, the value is the Name
/// </summary>
[DataMember(Name = "availableCultures")]
public IDictionary<string, string> AvailableCultures { get; set; }
[DataMember(Name = "startContentIds")]
public IEnumerable<EntityBasic> StartContentIds { get; set; }
[DataMember(Name = "startMediaIds")]
public IEnumerable<EntityBasic> StartMediaIds { get; set; }
/// <summary>
/// If the password is reset on save, this value will be populated
/// </summary>
[DataMember(Name = "resetPasswordValue")]
[ReadOnly(true)]
public string ResetPasswordValue { get; set; }
}
}