mirror of
https://github.com/Orbmu2k/nvidiaProfileInspector.git
synced 2025-12-23 23:18:07 -05:00
13 lines
331 B
C#
13 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace nspector.Common.Import
|
|
{
|
|
[Serializable]
|
|
public class Profile
|
|
{
|
|
public string ProfileName = "";
|
|
public List<string> Executeables = new List<string>();
|
|
public List<ProfileSetting> Settings = new List<ProfileSetting>();
|
|
}
|
|
} |