2
0
mirror of synced 2025-01-10 08:36:13 +00:00
cs-codex-dist-tests/ContinuousTests/TestMomentAttribute.cs

13 lines
206 B
C#

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