Files
2026-04-07 22:20:14 -04:00

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
}
}