31 lines
764 B
TypeScript
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;
|
|
}
|