Files
FeedlySharp/FeedlySharp/Models/FeedlyImage.cs
T
2014-11-20 20:03:09 +01:00

18 lines
288 B
C#

using Newtonsoft.Json;
using System;
namespace FeedlySharp.Models
{
public class FeedlyImage
{
[JsonProperty("url")]
public Uri Uri { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public string ContentType { get; set; }
}
}