pascalabcnet/Debugger.Core/Src/Tests/SummaryOnlyAttribute.cs

18 lines
365 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="David Srbeck<63>" email="dsrbecky@gmail.com"/>
// <version>$Revision$</version>
// </file>
using System;
namespace Debugger.Tests
{
[AttributeUsage(AttributeTargets.Property)]
public class SummaryOnlyAttribute: Attribute
{
}
}