aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaSegments/MediaSegmentGenerationRequest.cs
blob: 8c1f44de8c9961559d91685734f75dd0ee042047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
}