11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
export class BaseModel {
|
|
deserialize(input: any): this {
|
|
Object.assign(this, input);
|
|
return this;
|
|
}
|
|
|
|
sendFormat(): this {
|
|
return this;
|
|
}
|
|
}
|