23 lines
570 B
C#
23 lines
570 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AppData.DTO
|
|
{
|
|
public class SheetYeldStatDTO
|
|
{
|
|
public int SheetId { get; set; } = 0;
|
|
public int MatId { get; set; } = 0;
|
|
public int MatCode { get; set; } = 0;
|
|
public string MatDescript { get; set; } = "";
|
|
public int BunkIdx { get; set; } = 0;
|
|
public int SheetIdx { get; set; } = 0;
|
|
|
|
public int NumParts { get; set; } = 0;
|
|
|
|
public double Yeld { get; set; } = 0;
|
|
}
|
|
}
|