d-webservice-example/source/d_webservice_example/transport/todo_to.d
2018-12-18 22:18:06 +01:00

11 lines
184 B
D

module d_webservice_example.transport.todo_to;
struct TodoTO
{
import std.typecons : Nullable;
import std.uuid : UUID;
UUID uuid;
string title;
string content;
}