Runt.Core.Model.FileTree.Entry.Entry C# (CSharp) Method

Entry() public method

public Entry ( string relativePath, bool isOpen ) : System.Collections.Generic
relativePath string
isOpen bool
return System.Collections.Generic
        public Entry(string relativePath, bool isOpen)
        {
            Contract.Requires(_relPath != null);

            _relPath = relativePath;
            _isOpen = isOpen;
        }