using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenAuth.Repository.Domain;
namespace OpenAuth.App.ServiceApp.Request
{
///
/// 同步案件请求
///
public class AddOrUpdateAsyncDroneCaseDataReq
{
///
/// 案件实体
///
public DroneCaseinfo 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; }
}
}