1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2026-03-13 22:30:20 +01:00
Files

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; }
}
}