18 lines
330 B
C#
18 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Internal.Domain.Dto
|
|
{
|
|
internal class UploadFileResult
|
|
{
|
|
public bool IsEnd { get; set; }
|
|
|
|
public bool Success { get; set; }
|
|
|
|
public string? Url { get; set; }
|
|
}
|
|
}
|