26 lines
450 B
C#
26 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class TrainTaskItem
|
|
{
|
|
/// <summary>
|
|
/// 任务id
|
|
/// </summary>
|
|
public string TaskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片/附件
|
|
/// </summary>
|
|
public string AttachUrl
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|