using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Request { public class AddDroneCaseByDroneReq { public string remark { get; set; } public decimal? lng { get; set; } public decimal? lat { get; set; } public string account { get; set; } public List pic_list { get; set; } } }