23 lines
635 B
C#
23 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PictureFilesApi.Models.RequestModel
|
|
{
|
|
public class QueryDownLoadPicturesReq
|
|
{
|
|
/// <summary>
|
|
/// 初始化
|
|
/// </summary>
|
|
public void Init()
|
|
{
|
|
//去除回车水平制表符空格换行(\n 回车 \t 水平制表符 \s 空格 \r 换行)
|
|
filename = filename.Replace("\n", "").Replace("\t", "").Replace("\\s", "").Replace("\r", "").Replace(" ","");
|
|
}
|
|
public string filename { get; set; }
|
|
|
|
public string[] files { get; set; }
|
|
}
|
|
}
|