mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-16 06:31:42 +02:00
.github
.idea
bld
lib
TweetLib.Browser
Base
Contexts
Context.cs
Link.cs
Media.cs
Notification.cs
Selection.cs
Tweet.cs
Events
Interfaces
Request
Lib.cs
TweetLib.Browser.csproj
TweetLib.Browser.CEF
TweetLib.Communication
TweetLib.Core
TweetLib.Utils
TweetTest.Browser.CEF
TweetTest.Core
TweetTest.Utils
linux
resources
windows
.gitattributes
.gitignore
LICENSE.md
README.md
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
global.json
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; }
|
|
}
|
|
}
|