using System;
namespace System.ComponentModel
{
/// Provides data for the event.
// Token: 0x020000B4 RID: 180
public class PropertyChangedEventArgs : EventArgs
{
/// Initializes a new instance of the class.
/// The name of the property that changed.
// Token: 0x060005D0 RID: 1488 RVA: 0x0000F000 File Offset: 0x0000D200
public PropertyChangedEventArgs(string name)
{
this.propertyName = name;
}
/// Gets the name of the property that changed.
/// The name of the property that changed.
// Token: 0x17000185 RID: 389
// (get) Token: 0x060005D1 RID: 1489 RVA: 0x0000F010 File Offset: 0x0000D210
public string PropertyName
{
get
{
return this.propertyName;
}
}
// Token: 0x040001BD RID: 445
private string propertyName;
}
}