mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-29 21:27:59 +03:00

This fixes VS messages regarding namespaces, removes some redundant usings and SDK parameters, and adds XAML design data contexts.
13 lines
286 B
C#
13 lines
286 B
C#
using TRX_ConfigToolLib.Models.Lang;
|
|
|
|
namespace TRX_ConfigToolLib.Models.Specification;
|
|
|
|
public class EnumOption
|
|
{
|
|
public string EnumName { get; set; }
|
|
public string ID { get; set; }
|
|
public string Title
|
|
{
|
|
get => Language.Instance.Enums[EnumName][ID];
|
|
}
|
|
}
|