spartaxx.businessmodels 1.0.127 → 1.0.128
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,12 +1,13 @@
|
|
1
1
|
export interface TemplateInfo {
|
2
|
-
ModuleId
|
3
|
-
ModuleName
|
4
|
-
DocumentId
|
5
|
-
DocumentName
|
6
|
-
TemplateId
|
7
|
-
TemplateName
|
8
|
-
SectionId
|
9
|
-
SectionName
|
10
|
-
ContentId
|
11
|
-
HtmlContent
|
2
|
+
ModuleId?: number;
|
3
|
+
ModuleName?: string;
|
4
|
+
DocumentId?: number;
|
5
|
+
DocumentName?: string;
|
6
|
+
TemplateId?: number;
|
7
|
+
TemplateName?: string;
|
8
|
+
SectionId?: number;
|
9
|
+
SectionName?: string;
|
10
|
+
ContentId?: number;
|
11
|
+
HtmlContent?: string;
|
12
|
+
DocumentsType?: number;
|
12
13
|
}
|