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