MCPcopy Create free account
hub / github.com/CodeCavePro/revitless-toolkit / DesignFile

Class DesignFile

src/OLE/Xml/DesignFile.cs:6–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4namespace CodeCave.Revit.Toolkit.OLE
5{
6 public class DesignFile
7 {
8 [XmlElement("title", Namespace = "urn:schemas-autodesk-com:partatom")]
9 public string Title { get; set; }
10
11 [XmlElement("product", Namespace = "urn:schemas-autodesk-com:partatom")]
12 public string Product { get; set; }
13
14 [XmlElement("product-version", Namespace = "urn:schemas-autodesk-com:partatom")]
15 public int ProductVersion { get; set; }
16
17 [XmlElement("updated", Namespace = "urn:schemas-autodesk-com:partatom")]
18 public DateTime Updated { get; set; }
19
20
21 }
22}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected