Skip to content

Commit

Permalink
linvi#319 Fixed bug that resulted in Tweets with videos to not contai…
Browse files Browse the repository at this point in the history
…n the video content type.
  • Loading branch information
linvi committed Aug 15, 2016
1 parent d46bda1 commit 039995b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
using Tweetinvi.Models.Entities.ExtendedEntities;
using Newtonsoft.Json;
using Tweetinvi.Models.Entities.ExtendedEntities;

namespace Tweetinvi.Logic.TwitterEntities.ExtendedEntities
{
public class VideoEntityVariant : IVideoEntityVariant
{
[JsonProperty("bitrate")]
public int Bitrate { get; set; }
[JsonProperty("content_type")]
public string ContentType { get; set; }
[JsonProperty("url")]
public string URL { get; set; }
}
}

0 comments on commit 039995b

Please sign in to comment.