mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
13 lines
376 B
TypeScript
13 lines
376 B
TypeScript
export class UseProductItem
|
|
{
|
|
constructor(
|
|
public readonly id: number,
|
|
public readonly category: number,
|
|
public readonly name: string,
|
|
public readonly requestRoomObjectId: number,
|
|
public readonly targetRoomObjectId: number,
|
|
public readonly requestInventoryStripId: number,
|
|
public readonly replace: boolean)
|
|
{}
|
|
}
|