Merge pull request #4999 from abpframework/feat/common-lookup-type

Added a common Lookup type to the core package
pull/5024/head
Mehmet Erim 5 years ago committed by GitHub
commit cb8522c172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,6 +31,11 @@ export namespace ABP {
maxResultCount?: number;
}
export interface Lookup {
id: string;
displayName: string;
}
export interface Nav {
name: string;
parentName?: string;

Loading…
Cancel
Save