scripts
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
namespace JetBrains.Annotations
|
||||
{
|
||||
// Token: 0x02000442 RID: 1090
|
||||
[AttributeUsage(AttributeTargets.Parameter)]
|
||||
public class PathReferenceAttribute : Attribute
|
||||
{
|
||||
// Token: 0x0600386A RID: 14442 RVA: 0x00060CB4 File Offset: 0x0005EEB4
|
||||
public PathReferenceAttribute()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0600386B RID: 14443 RVA: 0x00060CC0 File Offset: 0x0005EEC0
|
||||
public PathReferenceAttribute([PathReference] string basePath)
|
||||
{
|
||||
this.BasePath = basePath;
|
||||
}
|
||||
|
||||
// Token: 0x17000CF6 RID: 3318
|
||||
// (get) Token: 0x0600386C RID: 14444 RVA: 0x00060CD0 File Offset: 0x0005EED0
|
||||
// (set) Token: 0x0600386D RID: 14445 RVA: 0x00060CEC File Offset: 0x0005EEEC
|
||||
[NotNull]
|
||||
public string BasePath { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user