mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
12 lines
260 B
C#
12 lines
260 B
C#
namespace Bloxstrap.Models.Persistable
|
|
{
|
|
public class RobloxState
|
|
{
|
|
public AppState Player { get; set; } = new();
|
|
|
|
public AppState Studio { get; set; } = new();
|
|
|
|
public List<string> ModManifest { get; set; } = new();
|
|
}
|
|
}
|