11 lines
279 B
D
11 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;
|
||
|
}
|