RootDataOfProductInStore.cs 517 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Cashier
  7. {
  8. public class RootDataOfProductInStore
  9. {
  10. public int ProductInStoreID { get; set; }
  11. public string NameProduct { get; set; }
  12. public int Weight { get; set; }
  13. public int Packaging { get; set; }
  14. public decimal PriceOfOne { get; set; }
  15. public string BarCode { get; set; }
  16. public int RemainsProduct { get; set; }
  17. }
  18. }