mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-21 03:54:07 +02:00
.github
.idea
Application
Browser
Configuration
Controls
Dialogs
Management
Plugins
Properties
Resources
Updates
Utils
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.Communication
TweetLib.Core
TweetLib.Utils
TweetTest.Core
TweetTest.Utils
subprocess
video
.gitattributes
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDuck.csproj
TweetDuck.sln
TweetDuck.sln.DotSettings
Version.cs
app.config
packages.config
17 lines
272 B
C#
17 lines
272 B
C#
namespace TweetLib.Browser.Contexts {
|
|
public readonly struct Media {
|
|
public Type MediaType { get; }
|
|
public string Url { get; }
|
|
|
|
public Media(Type mediaType, string url) {
|
|
MediaType = mediaType;
|
|
Url = url;
|
|
}
|
|
|
|
public enum Type {
|
|
Image,
|
|
Video
|
|
}
|
|
}
|
|
}
|