1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-09-18 12:24:49 +02:00
Files

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