mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 18:28:59 +03:00
Add mime type for create file
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
b0e7a2e5e8
commit
86bc1d950a
1 changed files with 1 additions and 1 deletions
|
@ -9,5 +9,5 @@ package com.nextcloud.model
|
||||||
|
|
||||||
sealed class OfflineOperationType {
|
sealed class OfflineOperationType {
|
||||||
data class CreateFolder(val path: String) : 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()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue