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

19 lines
522 B
C#
Raw Normal View History

using System.Runtime.Serialization;
2018-06-29 19:52:40 +02:00
namespace Umbraco.Web.Models.ContentEditing
{
/// <summary>
/// A model representing a member to be displayed in the back office
/// </summary>
[DataContract(Name = "content", Namespace = "")]
public class MemberDisplay : ListViewAwareContentItemDisplayBase<ContentPropertyDisplay>
2018-06-29 19:52:40 +02:00
{
[DataMember(Name = "username")]
public string Username { get; set; }
[DataMember(Name = "email")]
public string Email { get; set; }
}
}