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