mirror of
https://github.com/flarum/framework.git
synced 2025-03-03 07:50:54 +08:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
![]() |
import Model from 'flarum/model';
|
||
|
|
||
|
class Group extends Model {}
|
||
|
|
||
|
Group.prototype.id = Model.prop('id');
|
||
|
Group.prototype.name = Model.prop('name');
|
||
|
|
||
|
export default Group;
|