Table of Contents

Class Currency

Namespace
arolariu.Backend.Domain.Invoices.DDD.ValueObjects
Assembly
arolariu.Backend.Domain.Invoices.dll

The currency value object.

public sealed record Currency : IEquatable<Currency>
Inheritance
Currency
Implements
Inherited Members

Properties

Code

The currency code, in ISO 4217 format.

public string Code { get; set; }

Property Value

string

Name

The currency name, e.g. Euro, Dollar, etc.

public string Name { get; set; }

Property Value

string

Symbol

The currency symbol, e.g. $, €, £, etc.

public string Symbol { get; set; }

Property Value

string