using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 下发任务的任务类结果
///
public class TaskForIssueResult
{
///
/// 查询时间
///
public DateTime queryTime { get; set; }
///
/// 任务下发列表
///
public List taskForIssueList { get; set; }
}
}