using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Core.Models { [TableSpace(Name = "Core")] public class Product : TableEntity { public string Name { get; set; } public string Code { get; set; } public int Type { get; set; } public int Status { get; set; } public string Icon { get; set; } public string Url { get; set; } public string SchoolCode { get; set; } public string SchoolName { get; set; } } }