blob: 0bb8f32344b795df4d617abff9a027acea0ba5bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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; }
}
}
|