2025-02-11 17:33:57 +04:00

11 lines
150 B
C#

namespace BitterlyAndExclamationMarkContracts.Enums;
[Flags]
public enum Ingredients
{
None = 0,
Meat = 1,
Milk = 2,
Peanut = 4
}