using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.IO; using MahTweets.Core; using MahTweets.Core.Interfaces; using MahTweets.Core.Repositories; using MahTweets.Core.UpdateTypes; using MahTweets.Core.Utilities; namespace MahTweets.Extensions.Tumblr.Models { public class TumblrStatus : AbstractStatus { private Uri _Image; public TumblrStatus() { Parents = new ObservableCollection(); Types = new List(); } public Uri Image { get { return _Image; } set { _Image = value; RaisePropertyChanged("Image"); } } public override string FileVersion { get { throw new NotImplementedException(); } } public override void Load(string version, BinaryReader reader, ContactRepository contactRepository, ThreadSafeObservableCollection accounts) { } public override void Save(BinaryWriter writer) { } } }