mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
14 lines
334 B
C#
14 lines
334 B
C#
|
|
namespace GHelper.AutoTDP
|
|
{
|
|
public class GameProfile
|
|
{
|
|
public string GameTitle { get; set; }
|
|
public string ProcessName { get; set; }
|
|
public int TargetFPS { get; set; }
|
|
public int MinTdp { get; set; }
|
|
public int MaxTdp { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|