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