FooReadOnly.cs 174 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. namespace MonoTests.Common
  5. {
  6. [ReadOnly (true)]
  7. class FooReadOnly : FooWithDefaults
  8. {
  9. }
  10. }