I have a ...Product... class, which contains a ...Picture... property. Other classes may also have a picture, e.g. a ...Customer... can have a ...Picture.......Product.cs:...public class Product
{
public Picture Picture { get; set; }
}
...Customer.cs...