git-svn-id: https://duplicati.googlecode.com/svn/trunk@1194 59da171f-624f-0410-aa54-27559c288bec
14 lines
239 B
C#
14 lines
239 B
C#
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; }
|
|
}
|
|
}
|