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