using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Tango.Portal.Models { public class Product : TableEntity { public String Name { get; set; } public bool IsInternal { get; set; } public String Container { get; set; } public String Table { get; set; } public String Description { get; set; } public String BlobStartsWith { get; set; } public int MaxResults { get; set; } public String Image { get; set; } } }