Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. /// <summary>
  2. /// Represents an ideas comment
  3. /// </summary>
  4. public class Comment : DomainEntity
  5. {
  6. /// <summary>
  7. /// Gets or sets the comments content
  8. /// </summary>
  9. [Required]
  10. public string Text { get; set; }
  11.  
  12. #region Associations
  13. /// <summary>
  14. /// Gets or sets the link to the parent idea
  15. /// </summary>
  16. public virtual Idea Idea { get; set; }
  17. #endregion
  18. }
Add Comment
Please, Sign In to add comment