Created
August 28, 2017 21:00
-
-
Save hishaamn/d94ded0ea95a385beb6a28191872a047 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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