mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
12 lines
256 B
C#
12 lines
256 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;
|
|
}
|
|
}
|
|
}
|