1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser/Contexts/Link.cs

12 lines
221 B
C#

namespace TweetLib.Browser.Contexts {
public readonly struct Link {
public string Url { get; }
public string CopyUrl { get; }
public Link(string url, string copyUrl) {
Url = url;
CopyUrl = copyUrl;
}
}
}