2014-06-23 23:46:44 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
|
public class SchemaAttributes : Attribute
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-05-24 14:07:03 +00:00
|
|
|
|
/// Gets the system id associated with this schema
|
2014-06-23 23:46:44 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
public string SystemId { get; private set; }
|
|
|
|
|
|
|
|
|
|
public SchemaAttributes(string systemId)
|
|
|
|
|
{
|
|
|
|
|
SystemId = systemId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|