| 296 | |
| 297 | @Xml.Class("Marker") |
| 298 | export class MarkerSchema implements Referenceable { |
| 299 | @Xml.Attribute("id") |
| 300 | readonly id?: string |
| 301 | |
| 302 | @Xml.Attribute("name") |
| 303 | readonly name?: string |
| 304 | |
| 305 | @Xml.Attribute("color") |
| 306 | readonly color?: string |
| 307 | |
| 308 | @Xml.Attribute("comment") |
| 309 | readonly comment?: string |
| 310 | |
| 311 | @Xml.Attribute("time", Xml.NumberRequired) |
| 312 | readonly time!: number |
| 313 | } |
| 314 | |
| 315 | @Xml.Class("Markers") |
| 316 | export class MarkersSchema { |
nothing calls this directly
no outgoing calls
no test coverage detected