Untitled
unknown
typescript
7 months ago
317 B
0
Indexable
Never
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 });