yz_server/Server/MyClass/Views/ReplyShow.cs

32 lines
659 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Server.MyClass.Views
{
public class ReplyShow
{
/// <summary>
/// 字段名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 描述信息
/// </summary>
public string Description { get; set; }
/// <summary>
/// 内容
/// </summary>
public string Content { get; set; }
/// <summary>
/// 支持的变量
/// </summary>
public string[] SpecialVariables { get; set; }
}
}