forked from BornToBeRoot/NETworkManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThemeInfo.cs
More file actions
29 lines (26 loc) · 839 Bytes
/
Copy pathThemeInfo.cs
File metadata and controls
29 lines (26 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
namespace NETworkManager.Settings;
/// <summary>
/// Class contains informations about MahApps.Metro custom themes.
/// </summary>
public class ThemeInfo
{
/// <summary>
/// Name of the MahApps.Metro custom theme.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Display name of the MahApps.Metro custom theme.
/// </summary>
public string DisplayName { get; set; }
/// <summary>
/// Initializes a new instance of the<see cref="ThemeInfo"/> class with properties.
/// </summary>
/// <param name="name">Name of of the MahApps.Metro custom theme.</param>
/// <param name="displayName">Display name of the MahApps.Metro custom theme.</param>
public ThemeInfo(string name, string displayName)
{
Name = name;
DisplayName = displayName;
}
}