using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebDoorCreator.Data.DTO
{
///
/// Door cost data DTO
///
public class DoorPriceDTO
{
///
/// Door UID
///
public int OrderId { get; set; } = 0;
///
/// Door UID
///
public int DoorId { get; set; } = 0;
///
/// Articat path (ex 3d zip/pack)
///
public decimal UnitCost { get; set; } = 0;
///
/// Valid = true / cannot deliver = false
///
public bool Valid { get; set; } = true;
///
/// Error message (optional)
///
public string ErrorMsg { get; set; } = "";
}
}