Make WebDAVFile piecewise initializer public

This commit is contained in:
Isvvc 2021-05-03 21:53:37 -06:00
parent 375187f613
commit d79ed6d6bc
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ public struct WebDAVFile: Identifiable, Codable, Equatable, Hashable {
public private(set) var size: Int
public private(set) var etag: String
init(path: String, id: String, isDirectory: Bool, lastModified: Date, size: Int, etag: String) {
public init(path: String, id: String, isDirectory: Bool, lastModified: Date, size: Int, etag: String) {
self.path = path
self.id = id
self.isDirectory = isDirectory