using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Contexts
{
/// Indicates that the implementing property should be registered at runtime through the method.
// Token: 0x020003C9 RID: 969
[ComVisible(true)]
public interface IDynamicProperty
{
/// Gets the name of the dynamic property.
/// The name of the dynamic property.
///
///
///
// Token: 0x17000724 RID: 1828
// (get) Token: 0x06002636 RID: 9782
string Name { get; }
}
}