using System;
namespace BootCamp.DataAccess.Contract
{
///
/// Class for product
///
public abstract class ProductDto
{
///
/// Table name.
///
public string TableName { get; set; }
///
/// Producr type.
///
public string ProductType { get; set; }
///
/// Movie title.
///
public string Title { get; set; }
}
}