10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
import { Types } from "mongoose";
|
|
|
|
export class ISellerContract {
|
|
content: string;
|
|
seller: Types.ObjectId;
|
|
contractNumber: string;
|
|
signed: boolean;
|
|
singedAt: string;
|
|
}
|