Files
shop-api/src/modules/seller/models/Abstraction/ISeller-contract.ts
T
mahyargdz be82059172 first
2025-09-14 15:15:03 +03:30

10 lines
178 B
TypeScript

import { Types } from "mongoose";
export class ISellerContract {
content: string;
seller: Types.ObjectId;
contractNumber: string;
signed: boolean;
singedAt: string;
}