mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-21 20:42:46 +01:00
10 lines
274 B
C#
10 lines
274 B
C#
namespace TweetLib.Browser.Contexts {
|
|
public sealed class Context {
|
|
public Tweet? Tweet { get; set; }
|
|
public Link? Link { get; set; }
|
|
public Media? Media { get; set; }
|
|
public Selection? Selection { get; set; }
|
|
public Notification? Notification { get; set; }
|
|
}
|
|
}
|