bloxstrap/Bloxstrap/Models/CustomIntegration.cs

14 lines
446 B
C#

namespace Bloxstrap.Models
{
public class CustomIntegration
{
public string Name { get; set; } = "";
public string Location { get; set; } = "";
public string LaunchArgs { get; set; } = "";
public bool SpecifyGame { get; set; } = false;
public string GameID { get; set; } = "";
public bool AutoCloseOnGame { get; set; } = true;
public bool AutoClose { get; set; } = true;
}
}