jellyfin/MediaBrowser.Model/MediaSegments/MediaSegmentGenerationRequest.cs
2024-09-07 14:56:51 -06:00

15 lines
353 B
C#

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; }
}