mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-02 23:38:54 +02:00
12 lines
221 B
C#
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;
|
|
}
|
|
}
|
|
}
|