Untitled
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 });