mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-20 17:41:29 -07:00
13 lines
437 B
C#
13 lines
437 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class State
|
|
{
|
|
public string LastEnrolledChannel { get; set; } = "";
|
|
[Obsolete("Use PlayerVersionGuid", true)]
|
|
public string VersionGuid { set { PlayerVersionGuid = value; } }
|
|
public string PlayerVersionGuid { get; set; } = "";
|
|
public string StudioVersionGuid { get; set; } = "";
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|