currencyinfo.cs

来自「这个版本(InteliIM Open Kernel Release 2)是目前最」· CS 代码 · 共 88 行

CS
88
字号
#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 + =
减小字号Ctrl + -
显示快捷键?