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