feat:Initial commit
This commit is contained in:
13
StoreService/Models/OrderItemDto.cs
Normal file
13
StoreService/Models/OrderItemDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace StoreService.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Order line DTO.
|
||||
/// </summary>
|
||||
public class OrderItemDto
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long StoreItemId { get; set; }
|
||||
public int CalculatedPrice { get; set; }
|
||||
public List<long> AppliedDiscountIds { get; set; } = new();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user