using System; namespace BootCamp.Service.Contract { /// /// Product item model object. /// public abstract class ProductModel { /// /// Table name. /// public string TableName { get; set; } /// /// Producr type. /// public string ProductType { get; set; } /// /// Book, Movie, Album product title. /// public string Title { get; set; } } }