bloxstrap/Bloxstrap/Models/State.cs
2023-07-14 23:20:58 +01:00

13 lines
245 B
C#

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