LASAPlatform/OpenAuth.App/ServiceApp/DroneDocking/Request/AirPortStatusApply.cs

21 lines
385 B
C#
Raw Normal View History

2025-07-08 15:17:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.DroneDocking.Request
{
2025-07-31 10:18:30 +08:00
public class AirPortUploadReq
2025-07-08 15:17:24 +08:00
{
2025-07-31 10:18:30 +08:00
public string code { get; set; }
2025-07-08 15:17:24 +08:00
2025-07-31 10:18:30 +08:00
public string regioncode { get; set; }
2025-07-08 15:17:24 +08:00
2025-07-31 10:18:30 +08:00
public List<string> filenames { get; set; }
2025-07-08 15:17:24 +08:00
2025-07-31 10:18:30 +08:00
2025-07-08 15:17:24 +08:00
}
}