feat:Initial commit
This commit is contained in:
15
StoreService/Models/OrderDto.cs
Normal file
15
StoreService/Models/OrderDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace StoreService.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Result DTO representing an order summary.
|
||||
/// </summary>
|
||||
public class OrderDto
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public long UserId { get; set; }
|
||||
public DateTime CostUpdateDate { get; set; }
|
||||
public DateTime? PaidDate { get; set; }
|
||||
public bool ItemsRedeemed { get; set; }
|
||||
public List<OrderItemDto> Items { get; set; } = new();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user