Update Model.cs

Added the CoinType enum
This commit is contained in:
MarcUs7i 2024-11-15 13:20:20 +01:00 committed by GitHub
parent 9db7c2e4bc
commit b57eed5e79
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,14 @@
namespace CoffeeVendingMachines; namespace CoffeeVendingMachines;
public class Model public class Model
{ {
enum CoinType
{
Cent05
Cent10
Cent20
Cent50
Euro01
Euro02
}
} }