fixe l'upload

This commit is contained in:
Paul Schneider 2016-05-30 18:30:35 +02:00
commit 9d078e4e8e
14 changed files with 140 additions and 30 deletions

View file

@ -0,0 +1,19 @@
using System;
namespace Yavsc.ViewModels
{
public class FileInfo
{
public string PermanentUri { get; set; }
public string Name { get; set; }
public int Size { get; set; }
public DateTime Creation { get; set; }
public string MimeType { get; set; }
}
}