JiShe.CollectBus/shared/JiShe.CollectBus.Domain.Shared/CollectBusDomainSharedConsts.cs

21 lines
516 B
C#
Raw Normal View History

2024-12-19 16:07:07 +08:00
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";
2025-05-18 13:36:11 +08:00
public const string Business = "Business";
2024-12-19 16:07:07 +08:00
}
}