mirror of
https://github.com/outline/outline.git
synced 2026-06-21 15:25:01 +03:00
14 lines
257 B
JavaScript
14 lines
257 B
JavaScript
// @flow
|
|
import BaseModel from "./BaseModel";
|
|
|
|
class AuthenticationProvider extends BaseModel {
|
|
id: string;
|
|
name: string;
|
|
createdAt: string;
|
|
providerId: string;
|
|
isEnabled: boolean;
|
|
isConnected: boolean;
|
|
}
|
|
|
|
export default AuthenticationProvider;
|