Add mime type for create file

Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
alperozturk 2024-09-02 12:32:37 +02:00
parent b0e7a2e5e8
commit 86bc1d950a
No known key found for this signature in database
GPG key ID: 4E577DC593B59BDF

View file

@ -9,5 +9,5 @@ package com.nextcloud.model
sealed class OfflineOperationType {
data class CreateFolder(val path: String) : OfflineOperationType()
data class CreateFile(val localPath: String, val remotePath: String) : OfflineOperationType()
data class CreateFile(val localPath: String, val remotePath: String, val mimeType: String) : OfflineOperationType()
}