24 lines
504 B
C#
24 lines
504 B
C#
using RyzStudio.Windows.Forms;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BookmarkManager
|
|
{
|
|
public interface ISupportedFile
|
|
{
|
|
|
|
|
|
bool IsEncryptionSupported { get; set; }
|
|
|
|
List<string> SupportedExtensions { get; }
|
|
|
|
bool IsSupported(string filename);
|
|
|
|
bool IsEncrypted(string filename);
|
|
|
|
Result Load(BookmarkTreeView treeview, string filename, string password);
|
|
|
|
Result Save(BookmarkTreeView treeview, string filename, string password);
|
|
|
|
}
|
|
}
|