17 lines
352 B
C#
17 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UniversalEditor.ObjectModels.FileSystem
|
|
{
|
|
public interface IFileSystemContainer
|
|
{
|
|
File.FileCollection Files { get; }
|
|
Folder.FolderCollection Folders { get; }
|
|
string GetNewFolderName();
|
|
|
|
File AddFile(string name, byte[] fileData = null);
|
|
}
|
|
}
|