21 lines
474 B
C#
21 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PictureFilesApi.Models.RequestModel
|
|
{
|
|
public class AddOrUpdateDownLoadInternetToLocalReq
|
|
{
|
|
/// <summary>
|
|
/// 请求的互联网地址
|
|
/// </summary>
|
|
public string uri { get; set; }
|
|
|
|
/// <summary>
|
|
/// 请求的图片路径地址
|
|
/// </summary>
|
|
public List<string> files { get; set; }
|
|
}
|
|
}
|