Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Models/Dto/Journal/JournalPageTaskKeywordAnalysis.cs

22 lines
464 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QYZH.InteractiveMagazine.Models.Dto.Journal
{
public class JournalPageTaskKeywordAnalysis
{
/// <summary>
/// 问题Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 单项解析
/// </summary>
public string KeywordAnalysis { get; set; }
}
}