mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
18 lines
416 B
C#
18 lines
416 B
C#
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.MediaEncoding
|
|
{
|
|
public class ChapterImageRefreshOptions
|
|
{
|
|
public Video Video { get; set; }
|
|
|
|
public List<ChapterInfo> Chapters { get; set; }
|
|
|
|
public bool SaveChapters { get; set; }
|
|
|
|
public bool ExtractImages { get; set; }
|
|
}
|
|
}
|