13 lines
370 B
C#
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;
|
|
}
|