24 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel
 | 
						|
{
 | 
						|
	public class ConvertRatioModel
 | 
						|
	{
 | 
						|
		/// <summary>
 | 
						|
		/// 比率
 | 
						|
		/// </summary>
 | 
						|
		public decimal ConvertRatio { get; set; }
 | 
						|
		/// <summary>
 | 
						|
		/// 分子
 | 
						|
		/// </summary>
 | 
						|
		public decimal ConvertRatioNumerator { get; set; }
 | 
						|
		//分母
 | 
						|
		public decimal ConvertRatioDenominator { get; set; }
 | 
						|
	}
 | 
						|
 | 
						|
}
 |