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