te
This commit is contained in:
parent
01151e679b
commit
57b2f0400e
265 changed files with 22828 additions and 6 deletions
29
Unused/Decal.Adapter/DirectoryResolveEventArgs.cs
Normal file
29
Unused/Decal.Adapter/DirectoryResolveEventArgs.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
using System;
|
||||
|
||||
namespace Decal.Adapter;
|
||||
|
||||
public class DirectoryResolveEventArgs : EventArgs
|
||||
{
|
||||
private string myPath;
|
||||
|
||||
private object myResult;
|
||||
|
||||
public string Path => myPath;
|
||||
|
||||
public object Result
|
||||
{
|
||||
get
|
||||
{
|
||||
return myResult;
|
||||
}
|
||||
set
|
||||
{
|
||||
myResult = value;
|
||||
}
|
||||
}
|
||||
|
||||
internal DirectoryResolveEventArgs(string path)
|
||||
{
|
||||
myPath = path;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue