mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 02:34:49 +03:00
15 lines
332 B
C#
15 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Configuration
|
|
{
|
|
public class LibraryOptions
|
|
{
|
|
public bool EnableAudioArchiveFiles { get; set; }
|
|
public bool EnableVideoArchiveFiles { get; set; }
|
|
}
|
|
}
|