This commit is contained in:
he
2022-08-12 09:59:33 +08:00
parent 57bec89d11
commit 52c18a48db
3 changed files with 32 additions and 0 deletions
@@ -373,6 +373,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示
/// </summary>
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; }
}
public class ReadingQuestionSystemView
@@ -466,6 +471,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示
/// </summary>
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; }
}
@@ -738,6 +749,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 图片数量
/// </summary>
public int ImageCount { get; set; } = 1;
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; } = 0;
}
@@ -842,6 +858,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 是否显示
/// </summary>
public ShowQuestion ShowQuestion { get; set; }
/// <summary>
/// 最大问题数
/// </summary>
public int MaxQuestionCount { get; set; } = 0;
}