Files
6098/Cowain.Bake.Model/Entity/StationDataEntity.cs

17 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cowain.Bake.Model.Entity
{
public class StationDataEntity
{
public int Id { get; set; }
public int StationStep { get; set; }
public int Qty { get; set; }
public int NGQty { get; set; }
}
}