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