hello-shop/src/HelloShop.OrderingService/Queries/OrderSummary.cs
2024-11-20 08:04:27 +08:00

15 lines
373 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.OrderingService.Queries
{
public class OrderSummary
{
public int OrderId { get; init; }
public required string Status { get; init; }
public DateTimeOffset OrderDate { get; init; }
}
}