Skip to content

Instantly share code, notes, and snippets.

@hishaamn
Created August 28, 2017 21:00
Show Gist options
  • Select an option

  • Save hishaamn/d94ded0ea95a385beb6a28191872a047 to your computer and use it in GitHub Desktop.

Select an option

Save hishaamn/d94ded0ea95a385beb6a28191872a047 to your computer and use it in GitHub Desktop.
public class ContentFlowKey : DictionaryKey
{
/// <summary>
/// Gets or sets the timestamp.
/// </summary>
public DateTime Timestamp { get; set; }
/// <summary>
/// Gets or sets the contact id.
/// </summary>
public Guid ContactId { get; set; }
/// <summary>
/// Gets or sets the item id.
/// </summary>
public Guid ItemId { get; set; }
/// <summary>
/// Gets or sets the content type.
/// </summary>
public string ContentType { get; set; }
/// <summary>
/// Gets or sets the type.
/// </summary>
public string Type { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment