ArrayOutMoneyThreshold.cs 346 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Account
  6. {
  7. public class ArrayOutMoneyThreshold
  8. {
  9. public double EndNetWorth { get; set; }
  10. public double StartNetWorth { get; set; }
  11. public double ThresholdRatio { get; set; }
  12. }
  13. }