mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-29 12:27:07 +02:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import type { CompletedProgramName } from "@enums";
|
|
|
|
export class DarkWebItem {
|
|
program: CompletedProgramName;
|
|
price: number;
|
|
description: string;
|
|
|
|
constructor(program: CompletedProgramName, price: number, description: string) {
|
|
this.program = program;
|
|
this.price = price;
|
|
this.description = description;
|
|
}
|
|
}
|