bloxstrap/Bloxstrap/Helpers/RSMM/Package.cs
pizzaboxer 32227cfb55 Initial code
Version 1.0.0
2022-08-04 12:01:12 +01:00

23 lines
590 B
C#

// https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager/blob/main/ProjectSrc/Utility/Package.cs
namespace Bloxstrap.Helpers.RSMM
{
internal class Package
{
public string Name { get; set; }
public string Signature { get; set; }
public int PackedSize { get; set; }
public int Size { get; set; }
public bool Exists { get; set; }
public bool ShouldInstall { get; set; }
internal byte[] Data { get; set; }
public override string ToString()
{
return $"[{Signature}] {Name}";
}
}
}