Infrastructure/OpenAuth.App/ServiceApp/DroneCaseinfo/Request/AddOrUpdateDownLoadInternet...

22 lines
489 B
C#
Raw Normal View History

2024-11-14 13:56:04 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.Request
{
public class AddOrUpdateDownLoadInternetToLocalReq
{
/// <summary>
/// 请求的互联网地址
/// </summary>
public string uri { get; set; }
/// <summary>
/// 请求的图片路径地址
/// </summary>
public List<string> files { get; set; }
}
}