mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-04 22:04:59 +00:00
17 lines
347 B
Swift
17 lines
347 B
Swift
//
|
|
// JurisdictionalRestrictionActivity.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2021 Australian Government. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public typealias JurisdictionalRestrictionActivity = String
|
|
|
|
extension JurisdictionalRestrictionActivity: SimpleCellObject {
|
|
|
|
func getCellTitle() -> String {
|
|
return self
|
|
}
|
|
}
|