cs-codex-dist-tests/Tests/DistTestCore/DontDownloadLogsAttribute.cs

16 lines
364 B
C#
Raw Normal View History

using NUnit.Framework;
namespace DistTestCore
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
2024-04-15 05:36:12 +00:00
public class DontDownloadLogsAttribute : PropertyAttribute
{
public const string DontDownloadKey = "DontDownloadLogs";
2024-04-15 05:36:12 +00:00
public DontDownloadLogsAttribute()
: base(DontDownloadKey)
{
}
}
}