yogastic/yoga-cms/generated-strapi-interfaces/api/yoga-faq-qa.ts
Schneider Roland 3e3dbed6e6 add faq page
2025-01-31 21:42:52 +01:00

31 lines
764 B
TypeScript

// Interface automatically generated by schemas-to-ts
export interface YogaFaqQa {
id: number;
attributes: {
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
};
}
export interface YogaFaqQa_Plain {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
}
export interface YogaFaqQa_NoRelations {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
}
export interface YogaFaqQa_AdminPanelLifeCycle {
id: number;
createdAt: Date; updatedAt: Date; publishedAt?: Date; name?: string;
question?: string;
answer?: string;
}