namespace Connected.ServiceModel.Storage;
public interface IFile
{
string Name { get; }
DateTime Created { get; }
long Size { get; }
}