mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
22 lines
442 B
C#
22 lines
442 B
C#
using libhac;
|
|
|
|
namespace Net
|
|
{
|
|
internal class Options
|
|
{
|
|
public string Keyfile;
|
|
public string TitleKeyFile;
|
|
public string ConsoleKeyFile;
|
|
public ulong TitleId;
|
|
public int Version;
|
|
public ulong DeviceId;
|
|
public string CertFile;
|
|
}
|
|
|
|
internal class Context
|
|
{
|
|
public Options Options;
|
|
public Keyset Keyset;
|
|
public IProgressReport Logger;
|
|
}
|
|
}
|