TableSpaceAttribute.cs 272 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Context.Attributes.Table
  5. {
  6. [AttributeUsage(AttributeTargets.Class)]
  7. public class TableSpaceAttribute :Attribute
  8. {
  9. public string Name { get; set; }
  10. }
  11. }