Files
barker/bookie/src/app/sales/bills/kot.ts
tanshu d677cfb1ea Blacked and isorted the python files
Prettied and eslinted the typescript/html files
2020-10-11 10:56:29 +05:30

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);
}
}