jellyfin/MediaBrowser.Controller/MediaEncoding/ChapterImageRefreshOptions.cs

18 lines
416 B
C#
Raw Normal View History

2014-02-20 17:37:41 +01:00
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; }
}
}