14 lines
461 B
C#
14 lines
461 B
C#
|
using InternetShopDataModels.Models;
|
|||
|
|
|||
|
namespace InternetShopContracts.DataBindingModels
|
|||
|
{
|
|||
|
public class OrderBindingModel : 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; }
|
|||
|
}
|
|||
|
}
|