File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import Foundation
22
33@objc public class StickyAssignmentsDocument : NSObject , Codable {
4- var attributeName : String
5- var attributeValue : String
6- var assignments : [ String : String ]
4+ public let attributeName : String
5+ public let attributeValue : String
6+ public let assignments : [ String : String ]
77
8- init ( attributeName: String , attributeValue: String , assignments: [ String : String ] ) {
8+ public init ( attributeName: String , attributeValue: String , assignments: [ String : String ] ) {
99 self . attributeName = attributeName
1010 self . attributeValue = attributeValue
1111 self . assignments = assignments
1212 }
1313
14- init ( attributeName: String , attributeValue: String , assignments: [ String : JSON ] ) {
14+ public init ( attributeName: String , attributeValue: String , assignments: [ String : JSON ] ) {
1515 self . attributeName = attributeName
1616 self . attributeValue = attributeValue
1717
You can’t perform that action at this time.
0 commit comments