2020-11-03 16:36:59 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Runtime.Serialization;
|
2014-09-19 15:34:26 +10:00
|
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
|
namespace Umbraco.Cms.Core.Models.ContentEditing
|
2014-09-19 15:34:26 +10:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Used for basic member information
|
|
|
|
|
|
/// </summary>
|
2018-08-01 15:40:54 +10:00
|
|
|
|
public class MemberBasic : ContentItemBasic<ContentPropertyBasic>
|
2014-09-19 15:34:26 +10:00
|
|
|
|
{
|
|
|
|
|
|
[DataMember(Name = "username")]
|
2022-02-16 16:03:53 +01:00
|
|
|
|
public string? Username { get; set; }
|
2014-09-19 15:34:26 +10:00
|
|
|
|
|
|
|
|
|
|
[DataMember(Name = "email")]
|
2022-02-16 16:03:53 +01:00
|
|
|
|
public string? Email { get; set; }
|
2020-11-03 16:36:59 +01:00
|
|
|
|
|
|
|
|
|
|
[DataMember(Name = "properties")]
|
|
|
|
|
|
public override IEnumerable<ContentPropertyBasic> Properties
|
|
|
|
|
|
{
|
|
|
|
|
|
get => base.Properties;
|
|
|
|
|
|
set => base.Properties = value;
|
|
|
|
|
|
}
|
2014-09-19 15:34:26 +10:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|