You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Account/Models/ChFee_Exrate/Chfee_Exrate.cs

48 lines
886 B
C#

using System;
using System.Data;
using System.Collections;
using System.Collections.Generic;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.Account.Models.Chfee_Exrate
{
[JsonObject]
public class ChFeeExrate : ModelObjectBillBody
{
#region private Fields
private string _curr= String.Empty;
private decimal _exrate = 0;
private decimal _dfexrate = 0;
#endregion
#region Public Properties
public string CURR
{
get { return _curr; }
set { _curr = value; }
}
public decimal EXRATE
{
get { return _exrate; }
set { _exrate = value; }
}
public decimal DFEXRATE
{
get { return _dfexrate; }
set { _dfexrate = value; }
}
#endregion
}
}