mem_Export.cs 442 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. public class mem_Export
  7. {
  8. public string _fCount;
  9. public string _mCount;
  10. public string fCount {
  11. get { return _fCount; }
  12. set { _fCount = value; }
  13. }
  14. public string mCount
  15. {
  16. get { return _mCount; }
  17. set { _mCount = value; }
  18. }
  19. }
  20. }