1
0
mirror of https://github.com/DarthAffe/Arge.git synced 2022-11-28 19:26:16 +00:00
Arge/Arge/Themes/Theme.cs
2017-05-14 19:59:39 +02:00

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
}
}