mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
10 lines
250 B
C#
10 lines
250 B
C#
namespace Bloxstrap
|
|
{
|
|
public static class GlobalCache
|
|
{
|
|
public static readonly Dictionary<string, string?> ServerLocation = new();
|
|
|
|
public static readonly Dictionary<long, ThumbnailResponse> UserThumbnails = new();
|
|
}
|
|
}
|