1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-16 06:31:42 +02:00
Files

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