| 1234567891011121314 |
- import {Model, Str, Uid} from "pinia-orm";
- export class AdminAccess extends Model {
- static entity = 'admin'
- @Uid()
- id!: number
- @Str(null, { nullable: true })
- username!: string|null
- @Str(null, { nullable: true })
- email!: string|null
- }
|