mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
16 lines
332 B
C#
16 lines
332 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class FastFlag
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public string Value { get; set; } = null!;
|
|
}
|
|
}
|