Created
June 19, 2021 13:54
-
-
Save yogyogi/2f1f8c6a67eeafc40c86b6ea1b9e421a to your computer and use it in GitHub Desktop.
ASP.NET MVC BlueImp jQuery File Upload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UploadFilesResult | |
{ | |
public string name { get; set; } | |
public long size { get; set; } | |
public string type { get; set; } | |
public string url { get; set; } | |
public string deleteUrl { get; set; } | |
public string thumbnailUrl { get; set; } | |
public string deleteType { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment