2
0
mirror of synced 2025-01-12 09:34:40 +00:00
cs-codex-dist-tests/Tests/DistTestCore/DontDownloadLogsAttribute.cs
2024-04-15 07:36:12 +02:00

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)
{
}
}
}