MediaSegmentGenerationRequest.cs 353 B

1234567891011121314
  1. using System;
  2. namespace MediaBrowser.Model;
  3. /// <summary>
  4. /// Model containing the arguments for enumerating the requested media item.
  5. /// </summary>
  6. public record MediaSegmentGenerationRequest
  7. {
  8. /// <summary>
  9. /// Gets the Id to the BaseItem the segments should be extracted from.
  10. /// </summary>
  11. public Guid ItemId { get; init; }
  12. }