Files
nvidiaProfileInspector/nspector/Common/CustomSettings/CustomSettingValue.cs
Orbmu2k 5cb91fabe8 init
2016-03-26 20:13:14 +01:00

19 lines
394 B
C#

using System;
using System.Globalization;
namespace nspector.Common.CustomSettings
{
[Serializable]
public class CustomSettingValue
{
internal uint SettingValue
{
get { return Convert.ToUInt32(HexValue.Trim(), 16); }
}
public string UserfriendlyName { get; set; }
public string HexValue { get; set; }
}
}