Make push notification title, description nullable (#81)

* Make push notification title nullable

* Make push notification description nullable
This commit is contained in:
TonCherAmi 2022-09-19 20:57:31 +03:00 committed by GitHub
parent cd9e12f6d9
commit 709c71e48e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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