MatPropSave.cs 592 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. public class MatPropSave
  3. {
  4. public MatPropSave()
  5. {
  6. }
  7. public MatPropSave(int f_nMatNo, string f_strPropName, string f_strTypeName, string f_strValue)
  8. {
  9. this.nMatNo = f_nMatNo;
  10. this.strPropName = f_strPropName;
  11. this.strTypeName = f_strTypeName;
  12. this.strValue = f_strValue;
  13. }
  14. public MatPropSave(MatPropSave mps)
  15. {
  16. this.nMatNo = mps.nMatNo;
  17. this.strPropName = mps.strPropName;
  18. this.strTypeName = mps.strTypeName;
  19. this.strValue = mps.strValue;
  20. }
  21. public int nMatNo;
  22. public string strPropName;
  23. public string strTypeName;
  24. public string strValue;
  25. }