blob: 46d82b943a8d3a0b35c716a596a6c267c5770a0d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
using ArcaneLibs.Collections;
using Spacebar.Models.Generic;
namespace Spacebar.Client.WebCore.Client;
public class ClientStateContainer {
public ObservableDictionary<long, Guild> Guilds { get; set; } = [];
}
|