mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 18:14:42 +01:00
Feature/media segments plugin api (#12359)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model;
|
||||
|
||||
/// <summary>
|
||||
/// Model containing the arguments for enumerating the requested media item.
|
||||
/// </summary>
|
||||
public record MediaSegmentGenerationRequest
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the Id to the BaseItem the segments should be extracted from.
|
||||
/// </summary>
|
||||
public Guid ItemId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user