📄 currencyinfo.cs
字号:
#region Using Directives
using System;
using System.Collections.Generic;
using System.Text;
#endregion
namespace Org.InteliIM.Applications.MiniTools.Banks.InfoBank.Currency
{
/// <summary>
/// Repressents a currency information.
/// </summary>
public class CurrencyInfo
{
/// <summary>
/// Initializes a new instance of the CurrencyInfo class.
/// </summary>
public CurrencyInfo()
{
}
private string country;
/// <summary>
/// Gets or sets the country name.
/// </summary>
/// <value></value>
public string Country
{
get
{
if (this.country == null)
this.country = "";
return this.country;
}
set
{
this.country = value;
}
}
private string unit;
/// <summary>
/// Gets or sets the unit name.
/// </summary>
/// <value></value>
public string Unit
{
get
{
if (this.unit == null)
this.unit = "";
return this.unit;
}
set
{
this.unit = value;
}
}
private string smallUnit;
/// <summary>
/// Gets or sets the small unit name.
/// </summary>
/// <value></value>
public string SmallUnit
{
get
{
if (this.smallUnit == null)
this.smallUnit = "";
return this.smallUnit;
}
set
{
this.smallUnit = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -