- using System;
- using System.Collections.Generic;
- namespace ShoeShopMvc.Models;
- public partial class OrderProduct
- {
- public string OrderProductsId { get; set; } = null!;
- public string OrdersId { get; set; } = null!;
- public string Article { get; set; } = null!;
- public string Colvo { get; set; } = null!;
- }
|