AccountRechargeTotal.cs 236 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace MS.Entities
  5. {
  6. public class AccountRechargeTotal
  7. {
  8. public string account_id { get; set; }
  9. public long? amount { get; set; }
  10. }
  11. }