IntroInfo.cs 424 B

12345678910111213141516171819
  1. using System;
  2. namespace MediaBrowser.Controller.Library
  3. {
  4. public class IntroInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the path.
  8. /// </summary>
  9. /// <value>The path.</value>
  10. public string Path { get; set; }
  11. /// <summary>
  12. /// Gets or sets the item id.
  13. /// </summary>
  14. /// <value>The item id.</value>
  15. public Guid? ItemId { get; set; }
  16. }
  17. }