7 lines
82 B
C#
7 lines
82 B
C#
|
namespace CH.Energy.Abstractions.Enum;
|
||
|
|
||
|
public enum Currency
|
||
|
{
|
||
|
USD,
|
||
|
CAD,
|
||
|
}
|