Skip to content

Instantly share code, notes, and snippets.

@yogyogi
Created June 19, 2021 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yogyogi/2f1f8c6a67eeafc40c86b6ea1b9e421a to your computer and use it in GitHub Desktop.
Save yogyogi/2f1f8c6a67eeafc40c86b6ea1b9e421a to your computer and use it in GitHub Desktop.
ASP.NET MVC BlueImp jQuery File Upload
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