using MistoxWebsite.Shared.Database; namespace MistoxWebsite.Client.Statics { public class Statics { public static Account User = new Account(){ ID=-1 }; public static List Products = new List(); public static List Owned = new List(); public static List Carts = new List(); } public class TitleBarDiv { public string Name { get; set; } = string.Empty; public string Image { get; set; } = string.Empty; public event EventHandler? onClicked = null; public void invokeClicked() { onClicked?.Invoke( new object(), new EventArgs() ); } } }