17 lines
320 B
C#
17 lines
320 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Gatedge.K3.Pilot.PlugIn.Models
|
|
{
|
|
public class POPush
|
|
{
|
|
public int Id { get; set; }
|
|
public int entryId { get; set; }
|
|
|
|
public decimal qty { get; set; }
|
|
}
|
|
}
|