[DONT MERGE] give a spec to input files

This commit is contained in:
Paul Schneider 2018-01-16 13:35:54 +01:00
commit 742796c592
12 changed files with 67 additions and 44 deletions

View file

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