16 lines
290 B
Swift
16 lines
290 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 TestEnum: String, EnumPersistable {
|
|
case valueOne = "VALUE_ONE"
|
|
case valueTwo = "VALUE_TWO"
|
|
}
|