OrderProduct.cs 327 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ShoeShopMvc.Models;
  4. public partial class OrderProduct
  5. {
  6. public string OrderProductsId { get; set; } = null!;
  7. public string OrdersId { get; set; } = null!;
  8. public string Article { get; set; } = null!;
  9. public string Colvo { get; set; } = null!;
  10. }