CosValueAttribute.cs 352 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace COSXML.Utils
  5. {
  6. public sealed class CosValueAttribute : Attribute
  7. {
  8. public string Value
  9. {
  10. get;
  11. private set;
  12. }
  13. public CosValueAttribute(string value)
  14. {
  15. this.Value = value;
  16. }
  17. }
  18. }