Skip to content

Commit

Permalink
Fixing #54
Browse files Browse the repository at this point in the history
  • Loading branch information
alelom authored and al-fisher committed Sep 18, 2020
1 parent 42d65a5 commit df319b1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Filing_oM/Directory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Directory : BHoMObject, IDirectory, ILocatableResource, IContainabl
public virtual string Location { get; set; }

[Description("Name of the directory.")]
public new string Name { get; set; }
public override string Name { get; set; }

[Description("The content of the Directory.")]
public virtual List<object> Content { get; set; } = new List<object>();
Expand Down
2 changes: 1 addition & 1 deletion Filing_oM/FSDirectory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class FSDirectory : BHoMObject, IFSContainer, IDirectory
public virtual FSDirectory ParentDirectory { get; set; }

[Description("Name of the directory.")]
public new string Name { get; set; }
public override string Name { get; set; }

[Description("Gets a value indicating whether a file exists.")]
public virtual bool? Exists { get; set; } = null;
Expand Down
2 changes: 1 addition & 1 deletion Filing_oM/FSFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class FSFile : BHoMObject, IFSContainer, IFile
public virtual FSDirectory ParentDirectory { get; set; }

[Description("Name of the file, INCLUDING Extension.")]
public new string Name { get; set; }
public override string Name { get; set; }

[Description("Gets a value indicating whether a file exists.")]
public virtual bool? Exists { get; set; } = null;
Expand Down
2 changes: 1 addition & 1 deletion Filing_oM/File.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class File : BHoMObject, IFile, ILocatableResource, IContainableResource
public virtual string Location { get; set; }

[Description("Name of the file, INCLUDING Extension.")]
public new string Name { get; set; }
public override string Name { get; set; }

[Description("The content of the file.")]
public virtual List<object> Content { get; set; } = new List<object>();
Expand Down

0 comments on commit df319b1

Please sign in to comment.