bloxstrap/Bloxstrap/Models/FastFlag.cs
2023-07-22 22:36:00 +01:00

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!;
}
}