16 lines
272 B
TypeScript
16 lines
272 B
TypeScript
import { User } from '../../core/user';
|
|
|
|
import { Inventory } from './inventory';
|
|
|
|
export class Kot {
|
|
id: string;
|
|
code: number;
|
|
date: string;
|
|
user: User;
|
|
inventories: Inventory[];
|
|
|
|
public constructor(init?: Partial<Kot>) {
|
|
Object.assign(this, init);
|
|
}
|
|
}
|