Skip to content

Commit

Permalink
Fix pull operation for Bluebeam schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd committed Nov 12, 2021
1 parent ef83412 commit 536fc61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion XML_Adapter/CRUD/Bluebeam/ReadBluebeam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private IEnumerable<IBHoMObject> ReadBluebeam(Type type = null, XMLConfig config

TextReader reader = new StreamReader(_fileSettings.GetFullFileName());
XmlSerializer szer = new XmlSerializer(typeof(BH.oM.XML.Bluebeam.MarkupSummary));
report = (BH.oM.XML.Bluebeam.BluebeamObject)szer.Deserialize(reader);
report = (BH.oM.XML.Bluebeam.MarkupSummary)szer.Deserialize(reader);
reader.Close();

return new List<IBHoMObject> { report };
Expand Down
2 changes: 1 addition & 1 deletion XML_oM/Bluebeam/Markup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class Markup : BluebeamObject
public virtual string Author { get; set; }

[XmlElement("Date")]
public virtual DateTime Date { get; set; }
public virtual string Date { get; set; }

[XmlElement("Colour")]
public virtual string Colour { get; set; }
Expand Down

0 comments on commit 536fc61

Please sign in to comment.