mirror of
https://github.com/DarthAffe/Arge.git
synced 2022-11-28 19:26:16 +00:00
25 lines
408 B
C#
25 lines
408 B
C#
using Arge.Misc;
|
|
|
|
namespace Arge.Themes
|
|
{
|
|
public class Theme : AbstractBindable
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public string Name { get; }
|
|
public string Path { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public Theme(string name, string path)
|
|
{
|
|
this.Name = name;
|
|
this.Path = path;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|