refactoring fs

This commit is contained in:
Paul Schneider 2016-11-14 12:17:07 +01:00
commit 5617a543eb
8 changed files with 98 additions and 68 deletions

View file

@ -0,0 +1,17 @@
using System;
namespace Yavsc.ViewModels
{
public class UserFileInfo
{
public string Name { get; set; }
public long Size { get; set; }
public DateTime CreationTime { get; set; }
public DateTime LastModified { get; set; }
}
}