Created
July 29, 2022 06:45
-
-
Save 1998code/c58a0e53ce1eae2ba5f0549ae6d9a370 to your computer and use it in GitHub Desktop.
Pizza Delivery Attributes Sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct PizzaDeliveryAttributes: ActivityAttributes { | |
public typealias PizzaDeliveryStatus = ContentState | |
public struct ContentState: Codable, Hashable { | |
var driverName: String | |
var estimatedDeliveryTime: Date | |
} | |
var numberOfPizzas: Int | |
var totalAmount: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment