Make push notification imageUrl nullable (#80)

This commit is contained in:
TonCherAmi 2022-08-22 19:46:53 +03:00 committed by GitHub
parent 628c992b8d
commit cd9e12f6d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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