We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfab3e commit cbc5b2eCopy full SHA for cbc5b2e
Sources/MultiUser/Model/User.swift
@@ -10,14 +10,14 @@ import Foundation
10
public struct User : Codable {
11
private var uuid:UUID
12
13
- var username: String?
14
- var firstname: String?
15
- var lastname: String?
16
- var birthday: Date?
17
- var emails: [String]?
18
- var attributes: [String: String]?
19
- var icon: Data?
20
- var data: [Data]?
+ public var username: String?
+ public var firstname: String?
+ public var lastname: String?
+ public var birthday: Date?
+ public var emails: [String]?
+ public var attributes: [String: String]?
+ public var icon: Data?
+ public var data: [Data]?
21
22
public init() {
23
self.uuid = UUID()
0 commit comments