ComplianceServer/code/Hg.Internal.Domain/Dto/UploadFileResult.cs

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; }
}
}