using System.Collections.Generic; using Bloxstrap.Enums; namespace Bloxstrap.Models { public class State { public string VersionGuid { get; set; } = ""; public EmojiType CurrentEmojiType { get; set; } = EmojiType.Default; public List ModManifest { get; set; } = new(); } }