1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-10-28 18:24:25 +01:00
Files

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