| 4 | namespace 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected