mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- feat(loyalty): add loyalty program feature with list and navigation - fix(isa-app-side-menu): Update customer expand to signals - feat(catalogue-data-access): add searchLoyaltyItems method with comprehensive test coverage - feat(project-structure): migrate loyalty system to reward-based architecture - feat(checkout-reward): add query settings resolver and catalog resource - feat(swagger-cat-search-api): Swagger Update - feat(checkout-reward): update API call and prepare filter integration Refs: #5258
24 lines
207 B
TypeScript
24 lines
207 B
TypeScript
/* tslint:disable */
|
|
export interface TextDTO {
|
|
|
|
/**
|
|
* PK
|
|
*/
|
|
id?: number;
|
|
|
|
/**
|
|
* Key
|
|
*/
|
|
key?: string;
|
|
|
|
/**
|
|
* Label
|
|
*/
|
|
label?: string;
|
|
|
|
/**
|
|
* Wert
|
|
*/
|
|
value?: string;
|
|
}
|