14 lines
316 B
C#
14 lines
316 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
|