forked from Snoooopy/MetroUnlocker
First release build.
This commit is contained in:
@@ -7,9 +7,18 @@ namespace MetroUnlocker.LibTSForge.TokenStore
|
||||
{
|
||||
public class TokenEntry
|
||||
{
|
||||
public string Name;
|
||||
public string Extension;
|
||||
public byte[] Data;
|
||||
public bool Populated;
|
||||
public string Name { get; set; }
|
||||
public string Extension { get; set; }
|
||||
public byte[] Data { get; set; }
|
||||
public bool Populated { get; set; }
|
||||
|
||||
public TokenEntry() : this("", "", new byte[] { }, false) {}
|
||||
public TokenEntry(string name, string extension, byte[] data, bool populated = true)
|
||||
{
|
||||
Name = name;
|
||||
Extension = extension;
|
||||
Data = data;
|
||||
Populated = populated;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user