11 lines
148 B
D
11 lines
148 B
D
|
module d_webservice_example.transport.todo_to;
|
||
|
|
||
|
struct TodoTO
|
||
|
{
|
||
|
import std.uuid : UUID;
|
||
|
|
||
|
UUID uuid;
|
||
|
string title;
|
||
|
string content;
|
||
|
}
|