- using Microsoft.WindowsAzure.Storage.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Table;
- namespace TEAMModelOS.Model.Common.Models
- {
- [TableSpaceAttribute(Name = "Common")]
- public class RoleUser : TableEntity
- {
- public string Name { get; set; }
- public string Phone { get; set; }
- }
- }
|