IDynamicProperty.cs 283 B

12345678910111213141516171819
  1. //
  2. // System.Runtime.Remoting.Contexts.IDynamicProperty..cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Runtime.Remoting.Contexts {
  10. public interface IDynamicProperty {
  11. string Name {
  12. get;
  13. }
  14. }
  15. }