1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.Request
- {
- public class Customer:BaseModel
- {
- private string customerCode;
- private string customerName;
-
- public string CustomerCode { get => customerCode; set => customerCode = value; }
-
- public string CustomerName { get => customerName; set => customerName = value; }
- }
- }
|