18 lines
360 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|