using System;
using System.Collections.Generic;
using System.Text;
namespace DllEapEntity.Dtos
{
///
/// FAQ评价
///
public class FAQEvaluationDto
{
///
/// 问题Id
///
public int QuestionId { get; set; }
///
/// 问题名称
///
public string QuestionName { get; set; }
///
/// 有用的数量
///
public int UsefullCount { get; set; }
///
/// 没用的数量
///
public int UselessCount { get; set; }
///
/// 当前登录员工的评价
///
public FrequentlyAskedQuestionEvaluation Evaluation { get; set; }
}
}