StringValue.cs 412 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NEIntelligentControl2.Models.Attributes
  7. {
  8. internal class StringValue : System.Attribute
  9. {
  10. private string _value;
  11. public StringValue(string value)
  12. {
  13. _value = value;
  14. }
  15. public string Value { get { return _value; } }
  16. }
  17. }