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

declare(strict_types=1);

namespace DTS;

class Bookmark
{
    public string $id;

    public string $url = '';

    public string $title = '';

    public string $tag = '';

    public string $addedAt;
}