2024-11-14 15:04:43 +08:00
|
|
|
|
using OpenAuth.Repository.Domain;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace OpenAuth.App.ServiceApp.Response
|
|
|
|
|
|
{
|
|
|
|
|
|
public class DroneCaseInfoExt : DroneCaseinfo
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<string> case_pic_list { get; set; }
|
2024-11-25 11:04:20 +08:00
|
|
|
|
public List<string> case_subjectname { get; set; }
|
2024-11-14 15:04:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|