yavsc/src/Yavsc.Abstract/FileSystem/RemoteFileInfo.cs

17 lines
288 B
C#
Raw Normal View History

2019-09-04 01:25:36 +01:00
using System;
2016-11-14 12:17:07 +01:00
namespace Yavsc.ViewModels
{
public class RemoteFileInfo
2016-11-14 12:17:07 +01:00
{
public string Name { get; set; }
public long Size { get; set; }
public DateTime CreationTime { get; set; }
public DateTime LastModified { get; set; }
2016-11-14 12:17:07 +01:00
}
}