bloxstrap/Bloxstrap/Models/LaunchFlag.cs
pizzaboxer 765cccf89e
Refactor arg parser + channel handling
this commit changes way too many things to be stable. be warned of bugs if using this
2024-08-19 15:37:56 +01:00

23 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bloxstrap.Models
{
public class LaunchFlag
{
public string Identifiers { get; private set; }
public bool Active = false;
public string? Data;
public LaunchFlag(string identifiers)
{
Identifiers = identifiers;
}
}
}