namespace Developpez.Dotnet.System { /// /// Fournit des informations sur le thème du système /// public class SystemThemeInfo { private readonly string _themeName; private readonly string _themeColor; private readonly string _themeSize; private readonly string _themeFileName; /// /// Initialise une nouvelle instance de SystemThemeInfo /// /// Nom de fichier du thème /// Nom du thème /// Couleur du thème /// Taille du thème public SystemThemeInfo(string themeFileName, string themeName, string themeColor, string themeSize) { _themeFileName = themeFileName; _themeName = themeName; _themeSize = themeSize; _themeColor = themeColor; } /// /// Nom de fichier du thème /// public string ThemeFileName { get { return _themeFileName; } } /// /// Nom du thème /// public string ThemeName { get { return _themeName; } } /// /// Couleur du thème /// public string ThemeColor { get { return _themeColor; } } /// /// Taille du thème /// public string ThemeSize { get { return _themeSize; } } } }