using RedumpLib.Data; namespace RedumpLib.Attributes { /// /// Attribute specifc to Redump System values /// public class SystemAttribute : HumanReadableAttribute { /// /// Category for the system /// public SystemCategory Category { get; set; } /// /// System is restricted to dumpers /// public bool IsBanned { get; set; } = false; /// /// System has a CUE pack /// public bool HasCues { get; set; } = false; /// /// System has a DAT /// public bool HasDat { get; set; } = false; /// /// System has a decrypted keys pack /// public bool HasDkeys { get; set; } = false; /// /// System has a GDI pack /// public bool HasGdi { get; set; } = false; /// /// System has a keys pack /// public bool HasKeys { get; set; } = false; /// /// System has an LSD pack /// public bool HasLsd { get; set; } = false; /// /// System has an SBI pack /// public bool HasSbi { get; set; } = false; } }