BizHawk/BizHawk.Client.Common/config/ConfigPersistAttribute.cs

13 lines
244 B
C#

using System;
namespace BizHawk.Client.EmuHawk
{
/// <summary>
/// Define if the property has to be persisted in config
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public class ConfigPersistAttribute : Attribute
{
}
}