This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
namespace JetBrains.Annotations
{
// Token: 0x02000436 RID: 1078
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class NotifyPropertyChangedInvocatorAttribute : Attribute
{
// Token: 0x06003842 RID: 14402 RVA: 0x00060A0C File Offset: 0x0005EC0C
public NotifyPropertyChangedInvocatorAttribute()
{
}
// Token: 0x06003843 RID: 14403 RVA: 0x00060A18 File Offset: 0x0005EC18
public NotifyPropertyChangedInvocatorAttribute(string parameterName)
{
this.ParameterName = parameterName;
}
// Token: 0x17000CEC RID: 3308
// (get) Token: 0x06003844 RID: 14404 RVA: 0x00060A28 File Offset: 0x0005EC28
// (set) Token: 0x06003845 RID: 14405 RVA: 0x00060A44 File Offset: 0x0005EC44
public string ParameterName { get; private set; }
}
}