18 lines
443 B
C#
18 lines
443 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Server.MyClass.Views
|
|||
|
{
|
|||
|
public class ReplyShowClass
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public List<ReplyShowClass> Menus { get; set; }
|
|||
|
public string[] PrivateVariables { get; set; }
|
|||
|
public string Content { get; set; }
|
|||
|
}
|
|||
|
}
|