12345678910111213141516171819202122232425 |
- namespace Бархатные_бровки_Gebel
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Product
- {
- public int ID { get; set; }
- public string Title { get; set; }
- public decimal Cost { get; set; }
- public string Description { get; set; }
- public string Path_MainImage { get; set; }
- public bool Active { get; set; }
- public Nullable<int> ID_manufacturer { get; set; }
- }
- }
|