using System;
namespace Dfs.WayneChina.PosModelMini
{
public class PosTrxDiscount
{
///
/// Unique id of the POS transaction discount, current trx only.
///
public Guid Id { get; set; }
///
/// Unique id the POS discount.
///
public Guid PosDiscountId { get; set; }
///
/// Reference to the POS Discount.
///
public virtual PosDiscount PosDiscount { get; set; }
///
/// Amount of the discount.
///
public decimal DiscountAmount { get; set; }
///
/// Unique id the POS transaction.
///
public Guid PosTrxId { get; set; }
///
/// This is applied discount belong to which PosTrx.
///
public virtual PosTrx PosTrx { get; set; }
}
}