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

declare(strict_types=1);

namespace DTS;

class Todo
{
    public int $id;

    public string $task = '';

    public string $tag = '';

    public string $addedAt;
}