2019-10-07 20:56:30 +00:00
|
|
|
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;
|
2020-02-19 19:43:47 +00:00
|
|
|
|
|
|
|
@field('app_id') appId;
|
2019-10-07 20:56:30 +00:00
|
|
|
}
|