25 lines
513 B
C#
25 lines
513 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.Common.Consts
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 常用常量管理
|
|||
|
|
/// </summary>
|
|||
|
|
public class CommonConst
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 服务器标识
|
|||
|
|
/// </summary>
|
|||
|
|
public const string ServerTagName = "ServerTagName";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Kafka
|
|||
|
|
/// </summary>
|
|||
|
|
public const string Kafka = "Kafka";
|
|||
|
|
}
|
|||
|
|
}
|