Make push notification title nullable

This commit is contained in:
Vasili Karaev 2022-09-17 14:38:44 +03:00
parent cd9e12f6d9
commit e3db439989
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?
)