sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/OrderItemDto.cs

14 lines
316 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
namespace Sozsoft.Platform.Public;
public class OrderItemDto
{
public Guid ProductId { get; set; }
public ProductDto Product { get; set; }
public string BillingCycle { get; set; } // monthly | yearly
public int Quantity { get; set; }
public decimal TotalPrice { get; set; }
}