Material.cs 622 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace mysql.Model
  7. {
  8. public class Material
  9. {
  10. public int ID { get; set; }
  11. public string Title { get; set; }
  12. public int CountInPack { get; set; }
  13. public string Unit { get; set; }
  14. public double CountInStock { get; set; }
  15. public double MinCount { get; set; }
  16. public string Description { get; set; }
  17. public decimal Cost { get; set; }
  18. public string Image { get; set; }
  19. public int MaterialTypeID { get; set; }
  20. }
  21. }