mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-01-19 01:06:35 +00:00
13 lines
338 B
Swift
13 lines
338 B
Swift
|
// Copyright © 2020 Australian Government All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension Issue {
|
||
|
var infoAsDictionary: [String: NSObject] {
|
||
|
return ["summary": summary as NSObject,
|
||
|
"description": description as NSObject,
|
||
|
"components": components as NSObject,
|
||
|
"type": type as NSObject]
|
||
|
}
|
||
|
}
|