21 lines
500 B
C#
21 lines
500 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.Request
|
|||
|
|
{
|
|||
|
|
public class AddDroneDealPicReq
|
|||
|
|
{
|
|||
|
|
public string deal_id { get; set; }
|
|||
|
|
|
|||
|
|
public int type { get; set; }
|
|||
|
|
public string path { get; set; }
|
|||
|
|
public string latitude { get; set; }
|
|||
|
|
public string longitude { get; set; }
|
|||
|
|
public string angle { get; set; }
|
|||
|
|
public string tag { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|