BizHawk/BizHawk.Client.EmuHawk/tools/VirtualPads/schema/SchemaAttribute.cs

19 lines
371 B
C#
Raw Normal View History

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