mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
23 lines
527 B
C#
23 lines
527 B
C#
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class CustomIntegration
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string Location { get; set; } = null!;
|
|
public string LaunchArgs { get; set; } = null!;
|
|
public bool AutoClose { get; set; } = false;
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
}
|