| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Account
- {
- public class ArrayOutMoneyThreshold
- {
- public double EndNetWorth { get; set; }
- public double StartNetWorth { get; set; }
- public double ThresholdRatio { get; set; }
- }
- }
|