11 lines
249 B
C#
11 lines
249 B
C#
namespace InternetShopDataModels.Models
|
|
{
|
|
public interface IOrderModel : IId
|
|
{
|
|
string CustomerFIO { get; }
|
|
string CustomerEmail { get; }
|
|
string ImagePath { get; }
|
|
List<string> ProductNames { get; }
|
|
}
|
|
}
|