IntroInfo.cs 456 B

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