RoleUser.cs 388 B

12345678910111213141516
  1. using Microsoft.WindowsAzure.Storage.Table;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Table;
  6. namespace TEAMModelOS.Model.Common.Models
  7. {
  8. [TableSpaceAttribute(Name = "Common")]
  9. public class RoleUser : TableEntity
  10. {
  11. public string Name { get; set; }
  12. public string Phone { get; set; }
  13. }
  14. }