2
0
mirror of synced 2025-01-12 09:34:40 +00:00
cs-codex-dist-tests/DistTestCore/Logs/DontDownloadLogsAndMetricsOnFailureAttribute.cs
2023-04-14 09:54:07 +02:00

16 lines
417 B
C#

using NUnit.Framework;
namespace DistTestCore.Logs
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class DontDownloadLogsAndMetricsOnFailureAttribute : PropertyAttribute
{
public const string DontDownloadKey = "DontDownloadLogsAndMetrics";
public DontDownloadLogsAndMetricsOnFailureAttribute()
: base(DontDownloadKey)
{
}
}
}