mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-31 09:58:43 -05:00
14 lines
428 B
C#
14 lines
428 B
C#
using LibationFileManager;
|
|
|
|
namespace LinuxConfigApp
|
|
{
|
|
internal class LinuxInterop : IInteropFunctions
|
|
{
|
|
public LinuxInterop() { }
|
|
public LinuxInterop(params object[] values) { }
|
|
|
|
public void SetFolderIcon(string image, string directory) => throw new PlatformNotSupportedException();
|
|
public void DeleteFolderIcon(string directory) => throw new PlatformNotSupportedException();
|
|
}
|
|
}
|