using OpenAuth.App.Response;
using OpenAuth.App.ServiceApp.Request;
using OpenAuth.Repository.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
public class AddOrUpdateAsyncDroneCaseDataReq
{
public Sugar_Drone_caseinfo model { get; set; }
///
/// 图片文件
///
public List files { get; set; }
///
/// shp图层数据
///
public List shps { get; set; }
///
/// 关联案件
///
public List relations { get; set; }
///
/// 案件标签
///
public List tags { get; set; }
///
/// 专题
///
public List subjects { get; set; }
}
}