15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
|
import { Model } from '@nozbe/watermelondb';
|
||
|
import { field } from '@nozbe/watermelondb/decorators';
|
||
|
|
||
|
export default class SlashCommand extends Model {
|
||
|
static table = 'slash_commands';
|
||
|
|
||
|
@field('params') params;
|
||
|
|
||
|
@field('description') description;
|
||
|
|
||
|
@field('client_only') clientOnly;
|
||
|
|
||
|
@field('provides_preview') providesPreview;
|
||
|
}
|