mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-22 02:04:35 +02:00
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;
|
|
}
|
|
}
|
|
}
|