20 lines
462 B
C#
20 lines
462 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Atomx.Utils.Models
|
|
{
|
|
public class UploadResult
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Url { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public long Size { get; set; }
|
|
public string Type { get; set; } = string.Empty;
|
|
}
|
|
}
|