bringing back groupname

This commit is contained in:
Kevin G Christiano 2020-04-20 15:54:27 -04:00
parent 1437bc6018
commit c8f0341e4c

View File

@ -93,6 +93,9 @@ import Foundation
text = try typeContainer.decodeIfPresent(String.self, forKey: .text)
baseValue = text
fieldKey = try typeContainer.decodeIfPresent(String.self, forKey: .fieldKey)
if let groupName = try typeContainer.decodeIfPresent(String.self, forKey: .groupName) {
self.groupName = groupName
}
}
public func encode(to encoder: Encoder) throws {