2014-06-23 23:46:44 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
2017-07-12 19:40:10 +00:00
|
|
|
|
public class SchemaAttribute : Attribute
|
2014-06-23 23:46:44 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
2017-07-12 19:40:10 +00:00
|
|
|
|
public SchemaAttribute(string systemId)
|
2014-06-23 23:46:44 +00:00
|
|
|
|
{
|
|
|
|
|
SystemId = systemId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|