27 lines
573 B
C#
27 lines
573 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 JournalTaskAnswerUpdateInput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 答案Id
|
||
|
|
/// </summary>
|
||
|
|
public long Id { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 参考答案
|
||
|
|
/// </summary>
|
||
|
|
public string Answer { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 参考答案图片
|
||
|
|
/// </summary>
|
||
|
|
public string AnswerUrl { get; set; }
|
||
|
|
}
|
||
|
|
}
|