mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-03 14:03:09 +00:00
13 lines
206 B
C#
13 lines
206 B
C#
|
|
namespace ContinuousTests
|
|||
|
|
{
|
|||
|
|
public class TestMomentAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
public TestMomentAttribute(int t)
|
|||
|
|
{
|
|||
|
|
T = t;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public int T { get; }
|
|||
|
|
}
|
|||
|
|
}
|