Files
Unify/application/demo/news.js

29 lines
454 B
JavaScript
Raw Normal View History

2025-12-25 11:16:59 +01:00
import table from '/unify/table.js';
import title from './news.title.js';
import body from './news.body.js';
import price from './news.price.js';
import user from '/user/user.js';
import comment from './comment/comment.js';
import collection from '/unify/collection.js';
export default class news extends table {
title = new title();
body = new body();
price = new price();
comments = new collection( comment );
}