mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
14 lines
446 B
C#
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;
|
|
}
|
|
}
|