summaryrefslogtreecommitdiff
path: root/src/DTS/Bookmark.php
blob: 543a552bfda7ca20f12a3ec8f86e32f00b919f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

declare(strict_types=1);

namespace DTS;

class Bookmark
{
    public string $id;

    public string $url;

    public string $title;

    public string $tag;

    public string $addedAt;

    public bool $unread;
}