namespace JustTrack
{
///
/// Represents a monetary value with currency information for the justtrack SDK.
///
public class Money
{
///
/// Gets or sets the monetary value.
///
public double Value { get; set; }
///
/// Gets or sets the currency code.
///
public string Currency { get; set; }
///
/// Initializes a new instance of the class.
///
/// The monetary value.
/// The currency code.
public Money(double pValue, string pCurrency)
{
this.Value = pValue;
this.Currency = pCurrency;
}
}
}