Skip to content

Instantly share code, notes, and snippets.

@gerhart92
Created July 29, 2021 10:13
Show Gist options
  • Save gerhart92/4c6656b6a322698ce74556bb0c3dfed9 to your computer and use it in GitHub Desktop.
Save gerhart92/4c6656b6a322698ce74556bb0c3dfed9 to your computer and use it in GitHub Desktop.
namespace Sitecore.Feature.Hubspot.Models
{
using Sitecore.XConnect;
using System;
[FacetKey(DefaultFacetKey)]
[Serializable]
public class ScoreNameFacet : Facet
{
public const string DefaultFacetKey = "HubspotScoreName";
public ScoreNameFacet() { }
public string HubspotScoreName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment