d-webservice-example/source/d_webservice_example/transport/todo_to.d

12 lines
184 B
D
Raw Normal View History

2018-12-18 22:18:06 +01:00
module d_webservice_example.transport.todo_to;
struct TodoTO
{
import std.typecons : Nullable;
import std.uuid : UUID;
UUID uuid;
string title;
string content;
}