* layout * Refactor * wip * Quick changes to make this deployable without full management * test
20 lines
330 B
TypeScript
20 lines
330 B
TypeScript
import { observable } from "mobx";
|
|
import BaseModel from "./BaseModel";
|
|
import Field from "./decorators/Field";
|
|
|
|
class AuthenticationProvider extends BaseModel {
|
|
id: string;
|
|
|
|
displayName: string;
|
|
|
|
name: string;
|
|
|
|
isConnected: boolean;
|
|
|
|
@Field
|
|
@observable
|
|
isEnabled: boolean;
|
|
}
|
|
|
|
export default AuthenticationProvider;
|