17 lines
307 B
Swift
17 lines
307 B
Swift
import Foundation
|
|
|
|
final class FileResource: ObservableObject {
|
|
|
|
/// Globally unique id
|
|
@Published
|
|
var uniqueId: String
|
|
|
|
@Published
|
|
var description: String
|
|
|
|
init(uniqueId: String, description: String) {
|
|
self.uniqueId = uniqueId
|
|
self.description = description
|
|
}
|
|
}
|