using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SessionCompanion.ViewModels.Enums { /// /// Rodzaje waluty /// public enum CurrencyType { /// /// Bronz /// cp, /// /// Srebro /// sp, /// /// Elektrum /// ep, /// /// Złoto /// gp, /// /// Platyna /// pp } }