2
0
mirror of synced 2025-01-10 08:36:13 +00:00
2023-09-20 10:51:47 +02:00

13 lines
206 B
C#

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