using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BiskLog_Point_Of_Sale.Classes
{
public class Currency
{
///
/// Gets or sets the ID of the currency.
///
public Guid Id { get; set; }
///
/// Gets or sets the ISO currency code.
///
public string Code { get; set; }
///
/// Gets or sets the name of the currency.
///
public string Name { get; set; }
}
}