mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
14 lines
221 B
C#
14 lines
221 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace LibEveryFileExplorer.Files
|
|
{
|
|
public interface IWriteable
|
|
{
|
|
String GetSaveDefaultFileFilter();
|
|
byte[] Write();
|
|
}
|
|
}
|