mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-20 17:41:29 -07:00
9 lines
186 B
C#
9 lines
186 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class State
|
|
{
|
|
public string VersionGuid { get; set; } = "";
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|