mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-21 04:09:27 -05:00
14 lines
428 B
C#
14 lines
428 B
C#
using LibationFileManager;
|
|
|
|
namespace MacOSConfigApp
|
|
{
|
|
internal class MacOSInterop : IInteropFunctions
|
|
{
|
|
public MacOSInterop() { }
|
|
public MacOSInterop(params object[] values) { }
|
|
|
|
public void SetFolderIcon(string image, string directory) => throw new PlatformNotSupportedException();
|
|
public void DeleteFolderIcon(string directory) => throw new PlatformNotSupportedException();
|
|
}
|
|
}
|