IntroInfo.cs 475 B

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