2
0
mirror of synced 2025-01-27 08:46:04 +00:00
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 07:36:12 +02:00
public class DontDownloadLogsAttribute : PropertyAttribute
{
public const string DontDownloadKey = "DontDownloadLogs";
2024-04-15 07:36:12 +02:00
public DontDownloadLogsAttribute()
: base(DontDownloadKey)
{
}
}
}