using System; namespace MediaBrowser.Model; /// /// Model containing the arguments for enumerating the requested media item. /// public record MediaSegmentGenerationRequest { /// /// Gets the Id to the BaseItem the segments should be extracted from. /// public Guid ItemId { get; init; } }