You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
416 B
18 lines
416 B
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; }
|
|
}
|
|
}
|