chore: import upstream snapshot with attribution
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run

This commit is contained in:
wehub-resource-sync
2026-07-13 13:21:23 +08:00
commit b957a53def
5423 changed files with 863745 additions and 0 deletions
@@ -0,0 +1,6 @@
# Copyright (c) Microsoft. All rights reserved.
from samples.getting_started_with_processes.step03.models.food_ingredients import FoodIngredients
from samples.getting_started_with_processes.step03.models.food_order_item import FoodItem
__all__ = ["FoodIngredients", "FoodItem"]
@@ -0,0 +1,15 @@
# Copyright (c) Microsoft. All rights reserved.
from enum import Enum
class FoodIngredients(str, Enum):
POTATOES = "Potatoes"
FISH = "Fish"
BUNS = "Buns"
SAUCE = "Sauce"
CONDIMENTS = "Condiments"
NONE = "None"
def to_friendly_string(self) -> str:
return self.value
@@ -0,0 +1,13 @@
# Copyright (c) Microsoft. All rights reserved.
from enum import Enum
class FoodItem(str, Enum):
POTATO_FRIES = "Potato Fries"
FRIED_FISH = "Fried Fish"
FISH_SANDWICH = "Fish Sandwich"
FISH_AND_CHIPS = "Fish & Chips"
def to_friendly_string(self) -> str:
return self.value