2018-01-16 00:43:00 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IGraphicDataAttributes {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly uri?: string;
|
2018-01-16 00:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class GraphicDataAttributes extends XmlAttributeComponent<IGraphicDataAttributes> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-01-16 00:43:00 +00:00
|
|
|
uri: "uri",
|
|
|
|
};
|
|
|
|
}
|