mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-05 06:14:59 +00:00
18 lines
347 B
Swift
18 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
|
||
|
}
|
||
|
}
|