21 lines
467 B
C#
21 lines
467 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace QYZH.InteractiveMagazine.Models.Dto.Journal
|
|||
|
|
{
|
|||
|
|
public class JournalTaskAnswerInput
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参考答案
|
|||
|
|
/// </summary>
|
|||
|
|
public string Answer { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参考答案图片
|
|||
|
|
/// </summary>
|
|||
|
|
public string AnswerUrl { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|