using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace WIDESEA.Common.CustomModels
|
{
|
public class LocationColLine
|
{
|
public string Column { get; set; }
|
public string Line { get; set; }
|
}
|
|
public class LocationSum
|
{
|
public string LocationID { get; set; }
|
public decimal? Qty { get; set; }
|
}
|
}
|