2018-01-16 01:31:47 +00:00
|
|
|
import { XmlAttributeComponent } from "file/xml-components";
|
|
|
|
|
|
|
|
export interface IDocPropertiesAttributes {
|
2018-11-02 02:51:57 +00:00
|
|
|
readonly id?: number;
|
|
|
|
readonly name?: string;
|
|
|
|
readonly descr?: string;
|
2018-01-16 01:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class DocPropertiesAttributes extends XmlAttributeComponent<IDocPropertiesAttributes> {
|
2018-11-02 02:51:57 +00:00
|
|
|
protected readonly xmlKeys = {
|
2018-01-16 01:31:47 +00:00
|
|
|
id: "id",
|
|
|
|
name: "name",
|
|
|
|
descr: "descr",
|
|
|
|
};
|
|
|
|
}
|