amplify-swift/AmplifyTestCommon/Models/ScenarioATest6Post.swift

22 lines
393 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 struct ScenarioATest6Post: Model {
public let id: String
public var title: String
public init(id: String = UUID().uuidString,
title: String) {
self.id = id
self.title = title
}
}