Knocks/BackEnd/Knoks.Core/Entities/Currency.cs

18 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Knoks.Core.Entities
{
public class Currency
{
public string Code { get; set; }
public string CurrencyName { get; set; }
public string LongName { get; set; }
public int Decimals { get; set; }
public string Simbol1 { get; set; }
public string Simbol2 { get; set; }
}
}