mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 14:24:59 +00:00
23 lines
382 B
Swift
23 lines
382 B
Swift
//
|
|
// BLELogRecord.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
struct BLELogRecord: Encodable {
|
|
var timestamp: Date?
|
|
var msg: String?
|
|
|
|
mutating func update(msg: String) {
|
|
self.msg = msg
|
|
}
|
|
|
|
init(message: String) {
|
|
self.timestamp = Date()
|
|
self.msg = message
|
|
}
|
|
}
|