mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-25 12:01:25 -07:00
cleanup necessary namespaces and adjust namespaces for certain classes to better represent what they're for models, helpers and tools are all different and shouldnt really be under the same namespace
22 lines
484 B
C#
22 lines
484 B
C#
/*
|
|
* Roblox Studio Mod Manager (ProjectSrc/Utility/Package.cs)
|
|
* MIT License
|
|
* Copyright (c) 2015-present MaximumADHD
|
|
*/
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class Package
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Signature { get; set; } = "";
|
|
public int PackedSize { get; set; }
|
|
public int Size { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[{Signature}] {Name}";
|
|
}
|
|
}
|
|
}
|