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

15 lines
484 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";
export interface SupportiveMaterial extends BaseEntity{
type: SupportiveMaterialFieldType;
languageCode: string;
payload: string;
}
2023-11-03 12:30:11 +01:00
export interface SupportiveMaterialPersist extends BaseEntityPersist{
2023-11-03 12:30:11 +01:00
type: SupportiveMaterialFieldType;
languageCode: string;
payload: string;
2023-11-03 12:30:11 +01:00
}