mirror of
https://github.com/Orbmu2k/nvidiaProfileInspector.git
synced 2025-12-23 23:18:07 -05:00
19 lines
394 B
C#
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; }
|
|
|
|
}
|
|
} |