You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
667 B
34 lines
667 B
export interface TextTemplateDefinition {
|
|
name: string;
|
|
displayName: string;
|
|
defaultCultureName?: string;
|
|
isInlineLocalized: boolean;
|
|
isLayout: boolean;
|
|
layout?: string;
|
|
}
|
|
|
|
export interface TextTemplateContent {
|
|
name: string;
|
|
content?: string;
|
|
culture?: string;
|
|
}
|
|
|
|
export interface TextTemplateContentGetInput {
|
|
name: string;
|
|
culture?: string;
|
|
}
|
|
|
|
export interface TextTemplateRestoreInput {
|
|
name: string;
|
|
culture?: string;
|
|
}
|
|
|
|
export interface TextTemplateUpdateInput {
|
|
name: string;
|
|
culture?: string;
|
|
content: string;
|
|
}
|
|
|
|
export interface TextTemplateDefinitionGetListInput extends PagedAndSortedResultRequestDto {
|
|
filter?: string;
|
|
}
|
|
|