mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
14 lines
291 B
C#
14 lines
291 B
C#
namespace Bloxstrap.Models.Manifest
|
|
{
|
|
public class ManifestFile
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Signature { get; set; } = "";
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[{Signature}] {Name}";
|
|
}
|
|
}
|
|
}
|