mirror of
https://github.com/outline/outline.git
synced 2026-02-09 04:18:57 -06:00
11 lines
154 B
JavaScript
11 lines
154 B
JavaScript
// @flow
|
|
import BaseModel from "./BaseModel";
|
|
|
|
class ApiKey extends BaseModel {
|
|
id: string;
|
|
name: string;
|
|
secret: string;
|
|
}
|
|
|
|
export default ApiKey;
|