2024-12-23 09:15:41 +01:00
|
|
|
import { Types } from "mongoose";
|
2024-02-18 13:58:43 +01:00
|
|
|
import { IColor } from "@/src/types/inventoryTypes/commonInventoryTypes";
|
2025-07-04 15:19:15 -07:00
|
|
|
import { IShipAttachments } from "./personalRoomsTypes";
|
2023-06-05 04:16:49 +08:00
|
|
|
|
2024-02-18 13:58:43 +01:00
|
|
|
export interface IShipDatabase {
|
|
|
|
ItemType: string;
|
2024-12-23 09:15:41 +01:00
|
|
|
ShipOwnerId: Types.ObjectId;
|
2024-02-18 13:58:43 +01:00
|
|
|
ShipExteriorColors?: IColor;
|
|
|
|
AirSupportPower: string;
|
|
|
|
ShipAttachments?: IShipAttachments;
|
|
|
|
SkinFlavourItem?: string;
|
|
|
|
}
|