24 lines
487 B
C#
24 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Model.Ai
|
|
{
|
|
/// <summary>
|
|
/// 局域网OSS上传文件
|
|
/// </summary>
|
|
public class Ai_OSSUploadDto
|
|
{
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
public string FileName { get; set; }
|
|
/// <summary>
|
|
/// 文件地址
|
|
/// </summary>
|
|
public string Url { get; set; }
|
|
}
|
|
}
|