summaryrefslogtreecommitdiff
path: root/src/DTS/Bookmark.php
blob: ef14826d1037d8039a61df61d568f4755687f880 (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 int $id;

    public string $url = '';

    public string $title = '';

    public string $tag = '';

    public string $addedAt;
}