Materiel.cs 505 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Request
  6. {
  7. public class Material: BaseModel
  8. {
  9. private string _code;
  10. private string _name;
  11. public string MaterialCode { get => _code; set => _code = value; }
  12. public string MaterialName { get => _name; set => _name = value; }
  13. public string MaterialTypeCode { get; set; }
  14. public string SpecsModel { get; set; }
  15. }
  16. }