2018-01-10 00:29:17 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IRelationshipAttributesProperties {
|
|
|
|
id: string;
|
|
|
|
type: string;
|
|
|
|
target: string;
|
2018-05-06 22:23:35 -05:00
|
|
|
targetMode?: string;
|
2018-01-10 00:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class RelationshipAttributes extends XmlAttributeComponent<IRelationshipAttributesProperties> {
|
|
|
|
protected xmlKeys = {
|
|
|
|
id: "Id",
|
|
|
|
type: "Type",
|
|
|
|
target: "Target",
|
2018-05-06 22:23:35 -05:00
|
|
|
targetMode: "TargetMode",
|
2018-01-10 00:29:17 +00:00
|
|
|
};
|
|
|
|
}
|