You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
407 B
14 lines
407 B
import { AppModel } from '../../../app.model'; |
|
import { model, Model } from '@core/core'; |
|
|
|
@model() |
|
export class ConnectionPluginModel extends Model<{ |
|
types : { |
|
connectionSelectedOne: AppModel['TYPE']['connectionSelectedOne']; |
|
}, |
|
context: ConnectionPluginModel['context']; |
|
}> { |
|
static xtype = 'dec.dcm.model.connection_plugin'; |
|
|
|
context = <const>['connectionSelectedOne']; |
|
}
|
|
|