mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
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 CategoryCollectionName = "_Category";
|
|
|
|
/// <summary>
|
|
/// 场景表名
|
|
/// </summary>
|
|
public const string SceneCollectionName = "_Scene";
|
|
|
|
/// <summary>
|
|
/// 模型表名
|
|
/// </summary>
|
|
public const string MeshCollectionName = "_Mesh";
|
|
|
|
/// <summary>
|
|
/// 贴图表名
|
|
/// </summary>
|
|
public const string MapCollectionName = "_Map";
|
|
|
|
/// <summary>
|
|
/// 材质表名
|
|
/// </summary>
|
|
public const string MaterialCollectionName = "_Material";
|
|
|
|
/// <summary>
|
|
/// 音频表名
|
|
/// </summary>
|
|
public const string AudioCollectionName = "_Audio";
|
|
|
|
/// <summary>
|
|
/// 动画表名
|
|
/// </summary>
|
|
public const string AnimationCollectionName = "_Animation";
|
|
|
|
/// <summary>
|
|
/// 上传文件表名
|
|
/// </summary>
|
|
public const string FileCollectionName = "_File";
|
|
}
|
|
}
|