API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VisibleAttribute.cs 339B

1234567891011121314151617
  1. namespace UnivateProperties_API.Helpers.Attributes
  2. {
  3. public class VisibleAttribute : BaseAttribute
  4. {
  5. public VisibleAttribute(bool value)
  6. {
  7. Value = value;
  8. }
  9. public VisibleAttribute()
  10. {
  11. Value = true;
  12. }
  13. public override object Value { get; }
  14. }
  15. }