import { XmlAttributeComponent } from "file/xml-components";

export interface IGraphicDataAttributes {
    uri?: string;
}

export class GraphicDataAttributes extends XmlAttributeComponent<IGraphicDataAttributes> {
    protected xmlKeys = {
        uri: "uri",
    };
}
