mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-20 05:03:11 +00:00
12 lines
374 B
C#
12 lines
374 B
C#
namespace SabreTools.Data.Models.STFS
|
|
{
|
|
/// <summary>
|
|
/// STFS Signature, differs for remotely signed (PIRS/LIVE) and console signed ("CON ") formats
|
|
/// </summary>
|
|
/// <see href="https://free60.org/System-Software/Formats/STFS/"/>
|
|
public abstract class Signature
|
|
{
|
|
// Filled in by child class, MicrosoftSignature or ConsoleSignature
|
|
}
|
|
}
|