30 lines
703 B
C#
30 lines
703 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwCoreLib.Lux.Core.RestPayload
|
|
{
|
|
public class BomRowDTO
|
|
{
|
|
|
|
public string BR_UID { get; set; } = "";
|
|
|
|
public int index { get; set; } = 0;
|
|
|
|
public string ItemID { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
public double PriceUM { get; set; } = 0;
|
|
public double Qty { get; set; } = 0;
|
|
|
|
[NotMapped]
|
|
public double PriceTot
|
|
{
|
|
get => PriceUM * Qty;
|
|
}
|
|
}
|
|
}
|