yavsc/Yavsc/ViewModels/UserFiles/FileInfo.cs

19 lines
309 B
C#
Raw Normal View History

2016-05-30 18:30:35 +02:00
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; }
}
}