Archived
1
1
This repository has been archived on 2026-03-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RTUnlocker/MetroUnlocker/LibTSForge/TokenStore/TokenEntry.cs
2025-05-22 01:31:03 +02:00

25 lines
655 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MetroUnlocker.LibTSForge.TokenStore
{
public class TokenEntry
{
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;
}
}
}