mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
9 lines
209 B
C#
9 lines
209 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class ClientFlagSettings
|
|
{
|
|
[JsonPropertyName("applicationSettings")]
|
|
public Dictionary<string, string>? ApplicationSettings { get; set; }
|
|
}
|
|
}
|