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