mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-21 15:15:48 +02: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; }
|
|
}
|
|
}
|