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