Skip to content

Instantly share code, notes, and snippets.

@dnstommy
Created July 11, 2019 02:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnstommy/f109eece3d9da26d15fd3a523aa06641 to your computer and use it in GitHub Desktop.
Save dnstommy/f109eece3d9da26d15fd3a523aa06641 to your computer and use it in GitHub Desktop.
namespace Sitecore.Foundation.MembershipXdb.Models
{
using Sitecore.XConnect.Collection.Model;
public class MemberInfoModel
{
public string ContactId { get; set; }
public int VisitCount { get; set; }
public MembershipFacet MemberData { get; set; }
public PersonalInformation PersonalInfo { get; set; }
public bool MemberDataIsNull { get; set; }
public bool PersonalInfoIsNull { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment