mirror of
https://github.com/CaramelFur/Picsur.git
synced 2025-11-14 07:45:39 +01:00
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
|
|
import { ESysPreference } from 'picsur-shared/dist/entities/syspreference.entity';
|
||
|
|
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
|
||
|
|
|
||
|
|
@Entity()
|
||
|
|
export class ESysPreferenceBackend extends ESysPreference {
|
||
|
|
@PrimaryGeneratedColumn()
|
||
|
|
override id?: number;
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
override name: string;
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
override value: string;
|
||
|
|
}
|