mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-28 22:01:17 +00:00
19 lines
470 B
C#
19 lines
470 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace WandEnhancer.Models
|
|
{
|
|
public class WeModConfig
|
|
{
|
|
public string BrandName { get; set; }
|
|
public string ExecutableName { get; set; }
|
|
public string RootDirectory { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public string ExecutablePath => System.IO.Path.Combine(RootDirectory, ExecutableName);
|
|
|
|
public override string ToString()
|
|
{
|
|
return RootDirectory;
|
|
}
|
|
}
|
|
} |