mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 09:01:32 -07:00
27 lines
577 B
C#
27 lines
577 B
C#
/*
|
|
* Roblox Studio Mod Manager (ProjectSrc/Utility/Package.cs)
|
|
* MIT License
|
|
* Copyright (c) 2015-present MaximumADHD
|
|
*/
|
|
|
|
namespace Bloxstrap.Models.Manifest
|
|
{
|
|
public class Package
|
|
{
|
|
public string Name { get; set; } = "";
|
|
|
|
public string Signature { get; set; } = "";
|
|
|
|
public int PackedSize { get; set; }
|
|
|
|
public int Size { get; set; }
|
|
|
|
public string DownloadPath => Path.Combine(Paths.Downloads, Signature);
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[{Signature}] {Name}";
|
|
}
|
|
}
|
|
}
|