Skip to content

Instantly share code, notes, and snippets.

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