- 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 Subject : TableEntity
- {
- public string Name { get; set; }
- //public string Code { get; set; }
- //public string Lang { get; set; }
- }
- }
|