You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
484 B
12 lines
484 B
3 years ago
|
namespace BookStore.Features;
|
||
|
|
||
|
public static class FakeFeatureNames
|
||
|
{
|
||
|
public const string GroupName = "FakeFeature.Tests";
|
||
|
// 类型限制调用次数功能名称
|
||
|
public const string ClassLimitFeature = GroupName + ".LimitFeature";
|
||
|
// 方法限制调用次数功能名称
|
||
|
public const string MethodLimitFeature = GroupName + ".MethodLimitFeature";
|
||
|
// 限制调用间隔功能名称
|
||
|
public const string IntervalFeature = GroupName + ".IntervalFeature";
|
||
|
}
|