blob: ca10e1d4415f614bf29f7b28bbb03da6be55d1ee (
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 Todo
{
public int $id;
public string $task = '';
public string $description = '';
public string $tag = '';
public string $addedAt;
}
|