TextAttribute.cs 314 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Context.Attributes.MySQL
  5. {
  6. public class TextAttribute : Attribute
  7. {
  8. public TextAttribute(string value)
  9. {
  10. Value = value;
  11. }
  12. public string Value { get; set; }
  13. }
  14. }