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