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: ad88911f51409c4ff3614b1d477c4f0241f5ee04 (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
    {
        string Title { set; }
        WindowIcons Icon { set; }
    }
}