You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
723 B
50 lines
723 B
namespace Dto |
|
{ |
|
public class FileResultDto |
|
{ |
|
public string code { get; set; } |
|
|
|
|
|
public string message { get; set; } |
|
|
|
|
|
public bool? success { get; set; } |
|
|
|
|
|
|
|
public FileResultBaseDto data { get; set; } |
|
} |
|
|
|
public class FileResultBaseDto |
|
{ |
|
|
|
public string dir { get; set; } |
|
|
|
|
|
public string name { get; set; } |
|
|
|
|
|
public int size { get; set; } |
|
|
|
|
|
public object storageDeleteResult { get; set; } |
|
|
|
|
|
|
|
public StorageResultDto storageResult { get; set; } |
|
|
|
} |
|
|
|
public class StorageResultDto |
|
{ |
|
|
|
public object length { get; set; } |
|
|
|
|
|
public string md5 { get; set; } |
|
|
|
public bool success { get; set; } |
|
|
|
|
|
} |
|
}
|
|
|