mirror of
https://github.com/outline/outline.git
synced 2026-02-28 23:50:14 -06:00
19 lines
310 B
TypeScript
19 lines
310 B
TypeScript
import { observable } from "mobx";
|
|
import BaseModel from "./BaseModel";
|
|
import Field from "./decorators/Field";
|
|
|
|
class Pin extends BaseModel {
|
|
id: string;
|
|
collectionId: string;
|
|
documentId: string;
|
|
|
|
@observable
|
|
@Field
|
|
index: string;
|
|
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
}
|
|
|
|
export default Pin;
|