mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-18 22:24:53 +02:00
.github
.idea
Application
Browser
Configuration
Controls
Dialogs
Management
Plugins
Properties
Resources
Updates
Utils
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.Communication
TweetLib.Core
TweetLib.Utils
TweetTest.Core
TweetTest.Utils
subprocess
video
.gitattributes
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDuck.csproj
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
app.config
packages.config
12 lines
254 B
C#
12 lines
254 B
C#
namespace TweetLib.Browser.Contexts {
|
|
public struct Notification {
|
|
public string TweetUrl { get; }
|
|
public string? QuoteUrl { get; }
|
|
|
|
public Notification(string tweetUrl, string? quoteUrl) {
|
|
TweetUrl = tweetUrl;
|
|
QuoteUrl = quoteUrl;
|
|
}
|
|
}
|
|
}
|