mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-01 18:38:01 -05:00
14 lines
442 B
C#
14 lines
442 B
C#
using System;
|
|
|
|
namespace LibationFileManager
|
|
{
|
|
public class NullInteropFunctions : IInteropFunctions
|
|
{
|
|
public NullInteropFunctions() { }
|
|
public NullInteropFunctions(params object[] values) { }
|
|
|
|
public void SetFolderIcon(string image, string directory) => throw new PlatformNotSupportedException();
|
|
public void DeleteFolderIcon(string directory) => throw new PlatformNotSupportedException();
|
|
}
|
|
}
|