Notes/src/entities/branch.js

10 lines
214 B
JavaScript
Raw Normal View History

2018-03-24 21:39:15 -04:00
"use strict";
const Entity = require('./entity');
class Branch extends Entity {
static get tableName() { return "branches"; }
static get primaryKeyName() { return "branchId"; }
}
module.exports = Branch;