yogastic/yoga-cms/generated-strapi-interfaces/common/User.ts
2025-01-11 20:58:03 +01:00

27 lines
539 B
TypeScript

// Interface automatically generated by schemas-to-ts
export interface User {
id: number;
attributes: {
username: string;
email: string;
provider: string;
confirmed: boolean;
blocked: boolean;
createdAt: Date;
updatedAt: Date;
}
}
export interface User_Plain {
id: number;
username: string;
email: string;
provider: string;
confirmed: boolean;
blocked: boolean;
createdAt: Date;
updatedAt: Date;
}