mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
35 lines
800 B
C#
35 lines
800 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShadowEditor.Server
|
|
{
|
|
/// <summary>
|
|
/// 常量
|
|
/// </summary>
|
|
public static class Constant
|
|
{
|
|
/// <summary>
|
|
/// 场景分类表名
|
|
/// </summary>
|
|
public const string SceneTypeCollectionName = "_SceneType";
|
|
|
|
/// <summary>
|
|
/// 场景表名
|
|
/// </summary>
|
|
public const string SceneCollectionName = "_Scene";
|
|
|
|
/// <summary>
|
|
/// 模型分类表名
|
|
/// </summary>
|
|
public const string MeshTypeCollectionName = "_ModelType";
|
|
|
|
/// <summary>
|
|
/// 模型表名
|
|
/// </summary>
|
|
public const string MeshCollectionName = "_Model";
|
|
}
|
|
}
|