ChildDefinition.cs 500 B

12345678910111213141516171819202122
  1. using System;
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Class ChildDefinition
  6. /// </summary>
  7. public class ChildDefinition
  8. {
  9. /// <summary>
  10. /// Gets or sets the item id.
  11. /// </summary>
  12. /// <value>The item id.</value>
  13. public Guid ItemId { get; set; }
  14. /// <summary>
  15. /// Gets or sets the type.
  16. /// </summary>
  17. /// <value>The type.</value>
  18. public string Type { get; set; }
  19. }
  20. }