10 lines
165 B
C#
10 lines
165 B
C#
namespace TheXamlGuy.TaskbarGroup.Core
|
|
{
|
|
public interface ITaskbarButton : IDisposable
|
|
{
|
|
Rect Rect { get; }
|
|
|
|
string Name { get; }
|
|
}
|
|
}
|