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; }
|
|
}
|
|
}
|