21 lines
515 B
C#
21 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.CollectBus
|
|
{
|
|
public class CollectBusDomainSharedConsts
|
|
{
|
|
/// <summary>名称空间</summary>
|
|
public const string NameSpace = "JiShe.CollectBus";
|
|
/// <summary>默认语言</summary>
|
|
public const string DefaultCultureName = "zh-Hans";
|
|
|
|
public const string Basic = "Basic";
|
|
public const string Business = "Business";
|
|
|
|
}
|
|
}
|