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

10 lines
279 B
D

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;
}