1234567891011121314151617181920212223 |
- namespace BB_Grishina
- {
- using System;
- using System.Collections.Generic;
-
- public partial class ProductPhoto
- {
- public int ID { get; set; }
- public int ProductID { get; set; }
- public string PhotoPath { get; set; }
-
- public virtual Product Product { get; set; }
- }
- }
|