1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CoreEntity.Entity
- {
- public class mem_Export
- {
- public string _fCount;
- public string _mCount;
- public string fCount {
- get { return _fCount; }
- set { _fCount = value; }
- }
- public string mCount
- {
- get { return _mCount; }
- set { _mCount = value; }
- }
- }
- }
|