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