mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-03 07:43:52 +00:00
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; }
|
|
}
|
|
}
|