mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
12 lines
267 B
C#
12 lines
267 B
C#
namespace Bloxstrap.Models.Persistable
|
|
{
|
|
public class AppState
|
|
{
|
|
public string VersionGuid { get; set; } = string.Empty;
|
|
|
|
public Dictionary<string, string> PackageHashes { get; set; } = new();
|
|
|
|
public int Size { get; set; }
|
|
}
|
|
}
|