Update Model.cs

This commit is contained in:
MarcUs7i 2024-11-15 13:21:40 +01:00 committed by GitHub
parent b57eed5e79
commit 9a8ee9f87f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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