15 lines
484 B
C#
15 lines
484 B
C#
|
using InternetShopDataModels.Models;
|
|||
|
using System.ComponentModel;
|
|||
|
|
|||
|
namespace InternetShopContracts.DataViewModels
|
|||
|
{
|
|||
|
public class OrderViewModel : IOrderModel
|
|||
|
{
|
|||
|
public string CustomerFIO { get; set; } = string.Empty;
|
|||
|
public string CustomerEmail { get; set; } = string.Empty;
|
|||
|
public string ImagePath { get; set; } = string.Empty;
|
|||
|
public List<string> ProductNames { get; set; } = new List<string>();
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|