23 lines
492 B
C#
23 lines
492 B
C#
using OpenAuth.Repository.Domain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.Response
|
|
{
|
|
public class CaseInfoAndDealInfoResponse
|
|
{
|
|
/// <summary>
|
|
/// 案件数据
|
|
/// </summary>
|
|
public DroneCaseInfo caseinfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理数据
|
|
/// </summary>
|
|
public DroneCaseDeal dealinfo { get; set; }
|
|
}
|
|
}
|