Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IBrowserWindow.cs « Duplicati.GUI.TrayIcon « GUI « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82423032ff6ca8ae77004a7e1f0194c120652d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Duplicati.GUI.TrayIcon
{
    public interface IBrowserWindow
    {
        void SetTitle(string title);
        void SetIcon(WindowIcons icon);
    }
}