RoleSchool.cs 379 B

123456789101112131415
  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.Core.Models
  7. {
  8. [TableSpace(Name = "Core")]
  9. public class RoleSchool :Role
  10. {
  11. public string SchoolCode { get; set; }
  12. public string SchoolName { get; set; }
  13. }
  14. }