chore:目录重构
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Yi.Framework.Infrastructure.Const
|
||||
{
|
||||
/// <summary>
|
||||
/// 定义公共文件常量
|
||||
/// </summary>
|
||||
public class PathConst
|
||||
{
|
||||
public const string wwwroot = "wwwroot";
|
||||
public const string DataTemplate = "_DataTemplate";
|
||||
public const string DataExport = "_DataExport";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Yi.Framework.Infrastructure.Const
|
||||
{
|
||||
public class TokenTypeConst
|
||||
{
|
||||
public const string Id = nameof(Id);
|
||||
|
||||
public const string UserName = nameof(UserName);
|
||||
|
||||
public const string TenantId = nameof(TenantId);
|
||||
|
||||
public const string Email = nameof(Email);
|
||||
|
||||
public const string PhoneNumber = nameof(PhoneNumber);
|
||||
|
||||
public const string Roles = nameof(Roles);
|
||||
|
||||
public const string Permission = nameof(Permission);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user