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

11 lines
279 B
D
Raw Normal View History

2019-01-03 03:33:42 +01:00
module d_webservice_example.transport.todo_notification_cto;
import d_webservice_example.enums.todo_notification_type : TodoNotificationType;
import d_webservice_example.transport.todo_to : TodoTO;
struct TodoNotificationCTO
{
TodoNotificationType type;
TodoTO todo;
}