mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-07-08 18:16:25 +00:00
57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using SabreTools.RedumpLib.Attributes;
|
|
using SabreTools.RedumpLib.Data;
|
|
|
|
namespace SabreTools.RedumpLib.Legacy.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Attribute specifc to Redump System values
|
|
/// </summary>
|
|
public class SystemAttribute : HumanReadableAttribute
|
|
{
|
|
/// <summary>
|
|
/// Category for the system
|
|
/// </summary>
|
|
public SystemCategory Category { get; set; }
|
|
|
|
/// <summary>
|
|
/// System is restricted to dumpers
|
|
/// </summary>
|
|
public bool IsBanned { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has a CUE pack
|
|
/// </summary>
|
|
public bool HasCues { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has a DAT
|
|
/// </summary>
|
|
public bool HasDat { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has a decrypted keys pack
|
|
/// </summary>
|
|
public bool HasDkeys { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has a GDI pack
|
|
/// </summary>
|
|
public bool HasGdi { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has a keys pack
|
|
/// </summary>
|
|
public bool HasKeys { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has an LSD pack
|
|
/// </summary>
|
|
public bool HasLsd { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// System has an SBI pack
|
|
/// </summary>
|
|
public bool HasSbi { get; set; } = false;
|
|
}
|
|
}
|