Container.cs
440 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Model
{
public class Container
{
public int Id { get; set; }
public string Code { get; set; }
public string WarehouseCode { get; set; }
public string Status { get; set; }
public int PrintCount { get; set; }
public bool Enable { get; set; }
}
}