1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-08-16 06:31:42 +02:00
Files
.github
.idea
bld
lib
TweetLib.Browser
Base
Contexts
Context.cs
Link.cs
Media.cs
Notification.cs
Selection.cs
Tweet.cs
Events
Interfaces
Request
Lib.cs
TweetLib.Browser.csproj
TweetLib.Browser.CEF
TweetLib.Communication
TweetLib.Core
TweetLib.Utils
TweetTest.Browser.CEF
TweetTest.Core
TweetTest.Utils
linux
resources
windows
.gitattributes
.gitignore
LICENSE.md
README.md
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
global.json

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