16 lines
364 B
C#
16 lines
364 B
C#
using NUnit.Framework;
|
|
|
|
namespace DistTestCore
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
|
|
public class DontDownloadLogsAttribute : PropertyAttribute
|
|
{
|
|
public const string DontDownloadKey = "DontDownloadLogs";
|
|
|
|
public DontDownloadLogsAttribute()
|
|
: base(DontDownloadKey)
|
|
{
|
|
}
|
|
}
|
|
}
|