index.js 368 Bytes
Newer Older
zhengxiaokui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import Trnmod from "./Trnmod";
import Mtabut from './Mtabut'
import Setmod from './Setmod'
import Liaall from './Liaall'

export default class Publics {
    constructor() {
        this.data = {
            Trnmod: new Trnmod().data,
            Mtabut: new Mtabut().data,
            Setmod: new Setmod().data,
            Liaall: new Liaall().data,
        }
    }
}