12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
![]() |
import { XmlAttributeComponent } from "file/xml-components";
|
||
|
|
||
|
export interface IGraphicDataAttributes {
|
||
|
uri?: string;
|
||
|
}
|
||
|
|
||
|
export class GraphicDataAttributes extends XmlAttributeComponent<IGraphicDataAttributes> {
|
||
|
protected xmlKeys = {
|
||
|
uri: "uri",
|
||
|
};
|
||
|
}
|