emby-toolbox/EmbyToolbox/Models/EffectiveProfileSettings.cs
2026-05-16 20:28:49 +05:00

13 lines
370 B
C#

using EmbyToolbox.Services;
namespace EmbyToolbox.Models;
public sealed class EffectiveProfileSettings
{
public string SourceProfileName { get; init; } = "Emby";
public ConversionProfileSettingsEntry Profile { get; init; } = new();
public IReadOnlyList<string> ChangedFields { get; init; } = [];
public bool HasOverrides => ChangedFields.Count > 0;
}