using Windows.ApplicationModel.Resources; namespace StrixMusic.Sdk.WinUI.Services.Localization { /// /// A service for getting localized strings from providers. /// public sealed class LocalizationResourceLoader { /// /// The resource loader for strings related to startup. /// public ResourceLoader? Startup { get; init; } /// /// The resource loader for strings related to the SuperShell. /// public ResourceLoader? SuperShell { get; init; } /// /// The resource loader for common strings. /// public ResourceLoader? Common { get; init; } /// /// The resource loader for time-related strings. /// public ResourceLoader? Time { get; init; } /// /// The resource loader for time-related strings. /// public ResourceLoader? Music { get; init; } /// /// The resource loader for Quips. /// public ResourceLoader? Quips { get; init; } } }