mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
10 lines
221 B
C#
10 lines
221 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TweetLib.Api.Data.Notification {
|
|
public interface IScreenLayout {
|
|
IScreen PrimaryScreen { get; }
|
|
IScreen TweetDuckScreen { get; }
|
|
List<IScreen> AllScreens { get; }
|
|
}
|
|
}
|