mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
14 lines
322 B
C#
14 lines
322 B
C#
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<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|