mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			406 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			406 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using MediaBrowser.Model.Entities;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Chapters
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IChapterManager.
 | |
|     /// </summary>
 | |
|     public interface IChapterManager
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Saves the chapters.
 | |
|         /// </summary>
 | |
|         void SaveChapters(Guid itemId, IReadOnlyList<ChapterInfo> chapters);
 | |
|     }
 | |
| }
 |