Customer.cs 433 B

1234567891011121314151617
  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 Customer:BaseModel
  8. {
  9. private string customerCode;
  10. private string customerName;
  11. public string CustomerCode { get => customerCode; set => customerCode = value; }
  12. public string CustomerName { get => customerName; set => customerName = value; }
  13. }
  14. }