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.
18 lines
313 B
18 lines
313 B
namespace Cis.Application.Core;
|
|
|
|
public class CoreInfo
|
|
{
|
|
#region Api Info
|
|
|
|
/// <summary>
|
|
/// Api 分组名
|
|
/// </summary>
|
|
public const string GroupName = "Core";
|
|
|
|
/// <summary>
|
|
/// Api 分组排序
|
|
/// </summary>
|
|
public const int GroupOrder = 100;
|
|
|
|
#endregion Api Info
|
|
}
|