17 lines
402 B
C#
17 lines
402 B
C#
using OpenAuth.Repository.Domain;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.Response
|
|
{
|
|
public class DroneCloudTaskResp
|
|
{
|
|
public List<DroneCloudTask> droneCloudTasks { get; set; }
|
|
public List<DroneShpDataTaskResp> droneShpDatas { get; set; }
|
|
}
|
|
}
|