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.
40 lines
750 B
40 lines
750 B
import { ListResultDto } from '/@/api/model/baseModel';
|
|
|
|
export interface Text {
|
|
key: boolean;
|
|
value: string;
|
|
cultureName: string;
|
|
resourceName: string;
|
|
}
|
|
|
|
export interface TextDifference {
|
|
key: boolean;
|
|
value: string;
|
|
cultureName: string;
|
|
resourceName: string;
|
|
targetCultureName: string;
|
|
targetValue: string;
|
|
}
|
|
|
|
export interface SetTextInput {
|
|
key: boolean;
|
|
value: string;
|
|
cultureName: string;
|
|
resourceName: string;
|
|
}
|
|
|
|
export class TextListResult extends ListResultDto<TextDifference> {}
|
|
|
|
export interface GetTextByKey {
|
|
key: boolean;
|
|
cultureName: string;
|
|
resourceName: string;
|
|
}
|
|
|
|
export class GetTextRequest {
|
|
filter = '';
|
|
cultureName = '';
|
|
targetCultureName = '';
|
|
resourceName = '';
|
|
onlyNull = false;
|
|
}
|
|
|