GGMM/GrossesMitaines/GrossesMitainesAPI/Models/InvoiceModel.cs

13 lines
415 B
C#
Raw Normal View History

2022-11-01 12:24:04 -04:00
using GrossesMitainesAPI.Data;
using System.Collections.Generic;
namespace GrossesMitainesAPI.Models;
public class InvoiceModel {
public InventoryUser Account { get; set; }
public DateTime PurchaseDate { get; set; }
public Dictionary<Product, int> Products { get; set; }
public InventoryUser.Address BillingAddress { get; set; }
public InventoryUser.Address ShippingAddress { get; set; }
}