mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
cleanup necessary namespaces and adjust namespaces for certain classes to better represent what they're for models, helpers and tools are all different and shouldnt really be under the same namespace
11 lines
284 B
C#
11 lines
284 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 AutoClose { get; set; } = true;
|
|
}
|
|
}
|