21 lines
509 B
C#
21 lines
509 B
C#
namespace CMSMicroservice.Application.FactorDetailsCQ.Queries.GetFactorDetails;
|
|
public class GetFactorDetailsResponseDto
|
|
{
|
|
//
|
|
public long Id { get; set; }
|
|
//
|
|
public long ProductId { get; set; }
|
|
//
|
|
public int Count { get; set; }
|
|
//
|
|
public long UnitPrice { get; set; }
|
|
//
|
|
public int UnitDiscount { get; set; }
|
|
//
|
|
public long OrderId { get; set; }
|
|
//
|
|
public long UnitDiscountPrice { get; set; }
|
|
//
|
|
public bool IsChangePrice { get; set; }
|
|
|
|
} |