41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Models.Customer;
|
|
|
|
public partial record CustomerDownloadableProductsModel : BaseNopModel
|
|
{
|
|
public CustomerDownloadableProductsModel()
|
|
{
|
|
Items = new List<DownloadableProductsModel>();
|
|
}
|
|
|
|
public IList<DownloadableProductsModel> Items { get; set; }
|
|
|
|
#region Nested classes
|
|
|
|
public partial record DownloadableProductsModel : BaseNopModel
|
|
{
|
|
public Guid OrderItemGuid { get; set; }
|
|
|
|
public int OrderId { get; set; }
|
|
public string CustomOrderNumber { get; set; }
|
|
|
|
public int ProductId { get; set; }
|
|
public string ProductName { get; set; }
|
|
public string ProductSeName { get; set; }
|
|
public string ProductAttributes { get; set; }
|
|
|
|
public int DownloadId { get; set; }
|
|
public int LicenseId { get; set; }
|
|
|
|
public DateTime CreatedOn { get; set; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
|
|
public partial record UserAgreementModel : BaseNopModel
|
|
{
|
|
public Guid OrderItemGuid { get; set; }
|
|
public string UserAgreementText { get; set; }
|
|
} |