2019-12-04 12:50:05 +11:00
|
|
|
|
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 = "")]
|
2018-08-01 15:40:54 +10:00
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|