2024-12-23 09:15:41 +01:00
|
|
|
import { Types } from "mongoose";
|
2025-07-04 16:49:25 -07:00
|
|
|
import { IColor, IShipAttachments } from "@/src/types/inventoryTypes/commonInventoryTypes";
|
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;
|
|
|
|
}
|