13 lines
247 B
Swift
13 lines
247 B
Swift
//
|
|
// AppAction.swift
|
|
// PrivadoVPN
|
|
//
|
|
// Created by Zhandos Bolatbekov on 29.01.2021.
|
|
// Copyright © 2021 Privado LLC. All rights reserved.
|
|
//
|
|
|
|
enum AppAction: String {
|
|
case outPeriod = "OUT_PERIOD"
|
|
case outTraffic = "OUT_TRAFFIC"
|
|
}
|