d-webservice-example/source/d_webservice_example/data/todo_notification.d

11 lines
256 B
D
Raw Permalink Normal View History

2019-01-03 03:33:42 +01:00
module d_webservice_example.data.todo_notification;
import d_webservice_example.enums.todo_notification_type : TodoNotificationType;
import d_webservice_example.model.todo : Todo;
struct TodoNotification
{
TodoNotificationType type;
Todo todo;
}