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