Compare commits

...

1 Commits

Author SHA1 Message Date
Vasili Karaev e3db439989 Make push notification title nullable 2022-09-17 14:38:44 +03:00
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package ru.touchin.push.message.provider.dto
class Notification(
val title: String,
val title: String?,
val description: String,
val imageUrl: String?
)