mirror of
https://github.com/farcasclaudiu/LanBackup.git
synced 2026-06-28 11:00:57 +03:00
10 lines
157 B
TypeScript
10 lines
157 B
TypeScript
export class SaveResult<T> {
|
|
_body: T;
|
|
status: string;
|
|
ok: string;
|
|
statusText: string;
|
|
|
|
constructor(data) {
|
|
Object.assign(this, data);
|
|
}
|
|
} |