using System; namespace BizHawk.Client.EmuHawk { [AttributeUsage(AttributeTargets.Class)] public class SchemaAttributes : Attribute { /// /// Gets the system id associated with this schema /// public string SystemId { get; private set; } public SchemaAttributes(string systemId) { SystemId = systemId; } } }