1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model
- {
- public class Warehouse: BaseModel
- {
- private string _WarehouseCode;
- private string _WarehouseName;
- public string WarehouseCode { get => _WarehouseCode; set => _WarehouseCode = value; }
- public string WarehouseName { get => _WarehouseName; set => _WarehouseName = value; }
- public string WarehouseAdmin { get; set; }
- public string Contacts { get; set; }
- public string Telephone { get; set; }
- }
- }
|