feat:搭建webfirst模块

This commit is contained in:
陈淳
2023-06-10 13:53:00 +08:00
parent 496861587d
commit 1fe8b9c5c9
9 changed files with 154 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Module.WebFirstManager.Entities
{
public class TemplateVarEntity
{
/// <summary>
/// 变量名称
/// </summary>
public string Name { get; set; }=string.Empty;
/// <summary>
/// 变量值
/// </summary>
public string Value { get; set; } = string.Empty;
}
}