PartBooks.cs 490 B

123456789101112131415161718
  1. namespace TestDemo
  2. {
  3. partial class books
  4. {
  5. public string CountInStock { get; set; }
  6. public string CountInMagazine { get; set; }
  7. public int CountInCart { get; set; } = 0;
  8. public decimal NewPrice { get; set; }
  9. public decimal OldPrice { get; set; }
  10. public string VisibleMainPrice { get; set; } = "Collapsed";
  11. public string VisibleNewPrice { get; set; } = "Collapsed";
  12. public string TextDecor { get; set; }
  13. }
  14. }