pascalabcnet/Debugger.Core/Src/Tests/IgnoreAttribute.cs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

18 lines
360 B
C#

// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
// <version>$Revision$</version>
// </file>
using System;
namespace Debugger.Tests
{
[AttributeUsage(AttributeTargets.Property)]
public class IgnoreAttribute: Attribute
{
}
}