blob: 432f87c7cef915b50ce79485ede1a958addaeae7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
namespace I2R.Storage.Api.Models;
public class FileSystemEntry
{
public Guid Id { get; set; }
public string Name { get; set; }
public string ContentType { get; set; }
public long SizeInBytes { get; set; }
}
|