mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
export class DarkWebItem {
|
|
program: string;
|
|
price: number;
|
|
description: string;
|
|
|
|
constructor(program: string, price: number, description: string) {
|
|
this.program = program;
|
|
this.price = price;
|
|
this.description = description;
|
|
}
|
|
}
|