Require the 'Name' property on the IFileSystemObject

This commit is contained in:
Michael Becker 2015-04-29 12:55:20 -04:00
parent 9fcdb2e4c3
commit 609bbccf0c

View File

@ -7,6 +7,7 @@ namespace UniversalEditor.ObjectModels.FileSystem
{
public interface IFileSystemObject
{
string Name { get; set; }
}
public class IFileSystemObjectCollection
: System.Collections.ObjectModel.Collection<IFileSystemObject>