mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
13 lines
220 B
C#
13 lines
220 B
C#
|
using Jint;
|
||
|
using Jint.Native.Object;
|
||
|
|
||
|
namespace BililiveRecorder.Core.Scripting.Runtime
|
||
|
{
|
||
|
public class JintDns : ObjectInstance
|
||
|
{
|
||
|
public JintDns(Engine engine) : base(engine)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|