namespace Bloxstrap.Models.Persistable { public class AppState { public string VersionGuid { get; set; } = string.Empty; public Dictionary PackageHashes { get; set; } = new(); public int Size { get; set; } } }