Untitled
Anonymous
typescript
05/15/2023 6:35 PM
424 B
12
Indexable
export const TerminalSchema = new Schema<ICoreTerminal>({
companyCode: { type: String, required: true },
storeCode: { type: String, required: true },
code: { type: String, required: true },
name: { type: String, required: true },
active: { type: Boolean, default: true },
}, {
timestamps: true
});Editor is loading...