argos/dmp-frontend/src/app/core/model/supportive-material/supportive-material.ts

15 lines
468 B
TypeScript
Raw Normal View History

2023-11-03 12:30:11 +01:00
import { SupportiveMaterialFieldType } from "@app/core/common/enum/supportive-material-field-type";
import { BaseEntity, BaseEntityPersist } from "@common/base/base-entity.model";
2023-12-29 16:04:16 +01:00
export interface SupportiveMaterial extends BaseEntity {
type: SupportiveMaterialFieldType;
languageCode: string;
payload: string;
}
2023-11-03 12:30:11 +01:00
2023-12-29 16:04:16 +01:00
export interface SupportiveMaterialPersist extends BaseEntityPersist {
type: SupportiveMaterialFieldType;
languageCode: string;
payload: string;
2023-11-03 12:30:11 +01:00
}