You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
669 B
26 lines
669 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Warehouse.Models.DTO
|
|
{
|
|
public class BomIdDto
|
|
{
|
|
public string bomId { get; set; }
|
|
public string description { get; set; }
|
|
}
|
|
|
|
public class BomIdBomDto
|
|
{
|
|
public string bomId { get; set; }
|
|
public string partnumber { get; set; }
|
|
public byte isPrimary { get; set; }
|
|
public string alternativePartNumber { get; set; }
|
|
public decimal unitConsumption { get; set; }
|
|
public string unit { get; set; }
|
|
public string parttye { get; set; }
|
|
public string partnumberDescription { get; set; }
|
|
public decimal? lossRate { get; set; }
|
|
}
|
|
}
|
|
|