cs-codex-dist-tests/ContinuousTests/TestMomentAttribute.cs

13 lines
206 B
C#
Raw Normal View History

namespace ContinuousTests
{
public class TestMomentAttribute : Attribute
{
public TestMomentAttribute(int t)
{
T = t;
}
public int T { get; }
}
}