Files
QYZH.InteractiveMagazine/QYZH.InteractiveMagazine.Models/Dto/UserAnswerTaskService/CrossPageTaskOutput.cs

33 lines
790 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace QYZH.InteractiveMagazine.Models.Dto.UserAnswerTaskService;
/// <summary>
/// 跨页题目详情输出
/// </summary>
public class CrossPageTaskOutput
{
/// <summary>
/// 一级栏目名称
/// </summary>
public string FirstLevelCatalogName { get; set; }
/// <summary>
/// 栏目名称(二级栏目/文章名称)
/// </summary>
public string CatalogName { get; set; }
/// <summary>
/// 任务名称
/// </summary>
public string TaskName { get; set; }
/// <summary>
/// 图片数组已答题用PageAnswerUrl未答题用TaskUrl
/// </summary>
public List<string> Images { get; set; } = new();
/// <summary>
/// 是否跨页题目
/// </summary>
public bool IsCrossPage { get; set; }
}