mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-17 02:31:28 -07:00
10 lines
218 B
C#
10 lines
218 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class FastFlag
|
|
{
|
|
// public bool Enabled { get; set; }
|
|
public string Name { get; set; } = null!;
|
|
public string Value { get; set; } = null!;
|
|
}
|
|
}
|