demo20230512/Areas/Certification/ViewModels/CommentViewModel.cs
2023-05-12 10:20:28 +08:00

15 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Weee.Models;
namespace Weee.Areas.Certification.ViewModels
{
public class CommentViewModel
{
public Comment CurrentComment { get; set; }
public List<Comment> History { get; set; }
public LCAStatus LcaStatus { get; set; }
}
}