Minor tweaks.
[mono.git] / mcs / class / corlib / System.Runtime.Remoting.Contexts / IDynamicProperty.cs
1 //
2 // System.Runtime.Remoting.Contexts.IDynamicProperty..cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10
11 namespace System.Runtime.Remoting.Contexts {
12
13         public interface IDynamicProperty {
14
15                 string Name {
16                         get;
17                 }
18         }
19 }