10 lines
316 B
C#
10 lines
316 B
C#
namespace EmbyToolbox.Models;
|
|
|
|
public sealed class AddFilesOptions
|
|
{
|
|
public string Profile { get; init; } = "Emby";
|
|
public bool DisableSubtitleDefault { get; init; }
|
|
public bool RemoveForeignAudioAndSubtitles { get; init; }
|
|
public EffectiveProfileSettings EffectiveSettings { get; init; } = new();
|
|
}
|