1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Browser/Contexts/Media.cs

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