2
0
mirror of synced 2025-01-10 08:36:13 +00:00

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