17 lines
295 B
Swift
17 lines
295 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
// swiftlint:disable all
|
|
import Amplify
|
|
import Foundation
|
|
|
|
public enum Priority: String, EnumPersistable {
|
|
case low = "LOW"
|
|
case normal = "NORMAL"
|
|
case high = "HIGH"
|
|
}
|