mirror of
https://github.com/outline/outline.git
synced 2026-06-26 17:54:24 +03:00
12 lines
192 B
JavaScript
12 lines
192 B
JavaScript
// @flow
|
|
import BaseModel from './BaseModel';
|
|
|
|
class Membership extends BaseModel {
|
|
id: string;
|
|
userId: string;
|
|
collectionId: string;
|
|
permission: string;
|
|
}
|
|
|
|
export default Membership;
|