add a custom FindDataImpl for browsedefinitions

This commit is contained in:
Art Lowel
2023-05-17 18:31:46 +02:00
parent f3d4754d5b
commit 3d7e61f57f
17 changed files with 134 additions and 118 deletions

View File

@@ -0,0 +1,16 @@
import { autoserialize } from 'cerialize';
import { CacheableObject } from '../cache/cacheable-object.model';
/**
* Base class for BrowseDefinition models
*/
export abstract class BrowseDefinition extends CacheableObject {
@autoserialize
id: string;
/**
* Get the render type of the BrowseDefinition model
*/
abstract getRenderType(): string;
}